Giriş yap
En iyi yollayıcılar
Hello EMO | ||||
EMO | ||||
eMoStyLe | ||||
BesimBICER | ||||
GameKinG | ||||
Crysis | ||||
~>!.DεvιLρяιεsт.!<~ | ||||
MeTaL | ||||
TrueCrime | ||||
djhayal3t |
Istatistikler
Toplam 203 kayıtlı kullanıcımız varSon kaydolan kullanıcımız: crayzboy76
Kullanıcılarımız toplam 1186 mesaj attılar bunda 862 konu
Arama
Sosyal yer imi
Sosyal bookmarking sitesinde Emo, Emo nedir, Emo resimleri, Emo Kıyafetleri, Emo Sözleri, Emo Oyunları, EmoTurkey, Emo Nickler, Emo Avatarları, Punk, Punk Resimleri, Punk Avatarları, Rock, Rock Resimleri, Rock Avatarları, Msn Nickleri, Msn Avatarları, Müzik adresi saklayın ve paylaşın
Sosyal bookmarking sitesinde EMO Style ForumPro - Hos Geldiniz adresi saklayın ve paylaşın
Kimler hatta?
Toplam 1 kullanıcı online :: 0 Kayıtlı, 0 Gizli ve 1 Misafir Yok
Sitede bugüne kadar en çok 217 kişi C.tesi Tem. 29, 2017 1:46 am tarihinde online oldu.
En son konular
Reklam
(ASM) Assembly Tutorials
1 sayfadaki 1 sayfası
(ASM) Assembly Tutorials
[QUOTE=retart513;143778]Ok. I have my own tutorial aren't i l33t.
Binary System:
Pre-Info:
A base of 2 Numeric System 0's 1's. May seem hard to understand but it is very use once you catch on. If you have went to school and think you understood Decimal good, Then lets do some converting from Binary to Decimal.
Converting Binary:
I am going to show you how to convert Decimal to Binary and Binary to Decimal.
Convert Binary to Decimal:
Systax: "Value x 2 ^ Position"
Steps To Converting:
Answer:
The answer for this should 19. If it is not then you have done something wrong.
11001 or 10011
1 + 2 + 0 + 0 + 16 = 19 In Decimal.
Convert Decimal to Binary:
Systax: "Value / 2 Remainder"
Steps To Converting:
HexaDecimal System
Some newbie's tend to be scared of this one, But trust me it's so easy(If you understood the Binary).
Pre-Info:
HexaDecimal is a Base of 16(What a great number very useful).
It is made of 10 Numbers and 6 Letters These are from A-F or 10-16. The reason being this is that computer's are built to use multiples of 2.
So HexaDecimal System has been useful to computers and can be to you if you learn it.
Next I have a table for you learn, but it is best memorize it. Consider this a computer's "Multiplication
Table's". All the answers are here but you must do the math.
Converting Hexadecimal:
There are many ways to convert Hexadecimal, but I will only be covering two of them.
Convert Hexadecimal to Decimal:
Systax: "Value x 16 ^ Position"
Convert:
Answer: 10831
Steps To Converting:
Convert Decimal to Hexadecimal:
Systax 1: "Value / 16"
Systax 2: "Value x 16"
Systax 3: "Number - Value"
Convert:
A
B
C
Steps To Converting:
A
B
C
Answer: 52C
Additional things about Hexidecimal:
I'm Done
Ok. my hands are tried hopefully you have learned something from this tutorial.
Edit: Hopefully I got and the typos.
- RetarT -[/QUOTE]
Binary System:
Pre-Info:
A base of 2 Numeric System 0's 1's. May seem hard to understand but it is very use once you catch on. If you have went to school and think you understood Decimal good, Then lets do some converting from Binary to Decimal.
Converting Binary:
I am going to show you how to convert Decimal to Binary and Binary to Decimal.
Convert Binary to Decimal:
Systax: "Value x 2 ^ Position"
- Value = Number converting
- x = Multiplication
- 2 = Binary Base
- ^ = Exponent
- Position = Position in the whole number you are converting(Right To Left)
- 1 x 2 ^ 0 = 1
- 1 x 2 ^ 1 = 2
- 0 x 2 ^ 2 = 0
- 0 x 2 ^ 3 = 0
- 1 x 2 ^ 4 = 16
Convert:
[list]
Steps To Converting:
- Write the number down from Right to Left.
- Multiply each single number by the Binary Base(2).
- Then to the power (^) of its Position.
- Take the final numbers from each Position and add them.
Answer:
The answer for this should 19. If it is not then you have done something wrong.
11001 or 10011
1 + 2 + 0 + 0 + 16 = 19 In Decimal.
Convert Decimal to Binary:
Systax: "Value / 2 Remainder"
- Value = Starting Number to Convert.
- / = Division.
- Remainder = The Remainder(lol).
- 238 / 2 Remainder: 0
- 119 / 2 Remainder: 1
- 59 / 2 Remainder: 1
- 29 / 2 Remainder: 1
- 14 / 2 Remainder: 0
- 7 / 2 Remainder: 1
- 3 / 2 Remainder: 1
- 1 / 2 Remainder: 1
- 0 / 2 Remainder: 0
Convert:
[list]
Steps To Converting:
- Divide the Original number by 2, If it divides evenly the Remainder will be 0.
- Divide the answer from the previous calculation by 2.
- If it wont Divide evenly the Remainder will be 1.
- Round the number from the previous calculation DOWN, And divide it by 2.
- Repeat this process until you get to 0.
- Usually 1 represents true, and 0 represents false.
- When writing Binary, keep the number in multiples of 4.
- EX 1: "0000:0000" without the ':'.
- EX: Don't write 11001 this is incorrect, change it to 00011001, And remember that the zero's in front are not worth anything.
- Usually you add a 'b' after the number to signal the fact that it is a Binary number.
- EX: 00011001 = 00011001b.
Answer:
The final answer should be "011101110", As you may notice how the answer given is missing the 1st 0.
That's because just like in Decimal, they have no value and can be omitted, So 045 is same as 45.
Additional things about Binary:
[list]
HexaDecimal System
Some newbie's tend to be scared of this one, But trust me it's so easy(If you understood the Binary).
Pre-Info:
HexaDecimal is a Base of 16(What a great number very useful).
It is made of 10 Numbers and 6 Letters These are from A-F or 10-16. The reason being this is that computer's are built to use multiples of 2.
So HexaDecimal System has been useful to computers and can be to you if you learn it.
Next I have a table for you learn, but it is best memorize it. Consider this a computer's "Multiplication
Table's". All the answers are here but you must do the math.
- Kod:
[b]Hexadecimal[/b] |=| [b]Decimal[/b] |=| [b]Binary[/b]
0h |=| 0d |=| 0000b
1h |=| 1d |=| 0001b
2h |=| 2d |=| 0010b
3h |=| 3d |=| 0011b
4h |=| 4d |=| 0100b
5h |=| 5d |=| 0101b
6h |=| 6d |=| 0110b
7h |=| 7d |=| 0111b
8h |=| 8d |=| 1000b
9h |=| 9d |=| 1001b
Ah |=| 10d |=| 1010b
Bh |=| 11d |=| 1011b
Ch |=| 12d |=| 1100b
Dh |=| 13d |=| 1101b
Eh |=| 14d |=| 1110b
Fh |=| 15d |=| 1111b
- h = Hexadecimal
- d = Decimal
- b = Binary
Converting Hexadecimal:
There are many ways to convert Hexadecimal, but I will only be covering two of them.
Convert Hexadecimal to Decimal:
Systax: "Value x 16 ^ Position"
- Value = Value of the number you are converting.
- x = Multiply
- 16 = Hexadecimal Base
- ^ = Exponent
- Position = Position in the whole number you are converting.
Convert:
- F x 16 ^ 0 = 15 x 1 = 15
- 4 x 16 ^ 1 = 4 x 16 = 64
- A x 16 ^ 2 = 10 x 256 = 2560
- 2 x 16 ^ 3 = 2 x 4096 = 8192
Answer: 10831
Steps To Converting:
- Write the number down from Right to Left.
- Multiply the number by the Hexadecimal Base(16)
- Then to the power of it's Position
Convert Decimal to Hexadecimal:
Systax 1: "Value / 16"
- Systax 1:
- Value = Whole Number
- / = Divide
- 16 = The base of Hexadecimal
Systax 2: "Value x 16"
- Systax 2:
- Value = Whole Number
- x = Multiply
- 16 = The base of Hexadecimal
Systax 3: "Number - Value"
- Systax 3:
- Number = Number left from Systax 2
- - = Subtact
Convert:
A
- 1324 / 16 = 82.75
- 82 x 16 = 1312
- 1324 - 1312 = 12
- Converted to Hexadecimal: C
B
- 82 / 16 = 5.125
- 5 x 16 = 80
- 82 - 80 = 2
- Converted to Hexadecimal: 2
C
- 5 / 16 = 0.3125
- 0 x 16 = 0
- 5 - 0 = 5
- Converted to Hexadecimal: 5
Steps To Converting:
A
- Systax 1a: Divide The whole number with the Hexadecimal Base(16).
- Systax 1b: Multiply what you have left from Systax 1a by the Hexadecimal Base(16).
- Systax 1c: Subtact The number from Systax 1b From the whole number.
B
- Take the number you got from Systax 1a.
- Systax 2a: Divide this number with the Hexadecimal Base(16).
- Systax 2b: Multiply what you have left from Systax 2a by the Hexadecimal Base(16).
- Systax 2c: Subtact The number from Systax 1a from Systax 2b.
C
- Take the number you got from Systax2a.
- Systax 3a: Divide this number with the Hexadecimal Base(16).
- Systax 3b: Multiply what you have left from Systax 3a by the Hexadecimal Base(16).
- Systax 3c: Subtact The number from Systax 2a from Systax 3b.
Answer: 52C
Additional things about Hexidecimal:
- Keep Hexidecimal numbers in multiples of 4, adding zeros as necessary
- Study it for days
- Don't give up
I'm Done
Ok. my hands are tried hopefully you have learned something from this tutorial.
Edit: Hopefully I got and the typos.
- RetarT -[/QUOTE]
Similar topics
» 1-Packers + Unpacking Tutorials
» 3-Keygenning + Serial Fishing Tutorials
» 2-Reversing + General Byte Patching Tutorials
» C++ İçinde Assembly
» [ASM] Basic assembly instructions (opcodes) and examples
» 3-Keygenning + Serial Fishing Tutorials
» 2-Reversing + General Byte Patching Tutorials
» C++ İçinde Assembly
» [ASM] Basic assembly instructions (opcodes) and examples
1 sayfadaki 1 sayfası
Bu forumun müsaadesi var:
Bu forumdaki mesajlara cevap veremezsiniz
Cuma Ağus. 29, 2014 8:33 am tarafından Hello EMO
» goldenchase.net maden yaparak para kazanma
Cuma Ağus. 29, 2014 8:18 am tarafından Hello EMO
» etichal hacker görsel egitim seti
Çarş. Ağus. 06, 2014 4:57 am tarafından Hello EMO
» KO TBL Source C#
Ptsi Ara. 09, 2013 6:36 am tarafından Hello EMO
» x86 Registers
C.tesi Ağus. 24, 2013 5:02 am tarafından Hello EMO
» [Tutorial] Pegando Address, Pointers de WYD
Çarş. Tem. 10, 2013 7:25 am tarafından Hello EMO
» [Tutorial] Pegando Address, Pointers de CS Metodo²
Çarş. Tem. 10, 2013 7:23 am tarafından Hello EMO
» [Tutorial] Aprendendo basico deASM OLLYDBG
Çarş. Tem. 10, 2013 7:22 am tarafından Hello EMO
» Basic C# DLL injector
Ptsi Tem. 08, 2013 7:48 am tarafından Hello EMO