mirror of
https://github.com/AYIDouble/x86-Assembly-Reverse-Engineering.git
synced 2026-06-21 00:46:54 +08:00
🔁 Update README
This commit is contained in:
parent
4bb9484c8f
commit
24488704b2
1 changed files with 18 additions and 4 deletions
22
README.md
22
README.md
|
|
@ -1,9 +1,23 @@
|
|||
# x86-assembly-Reverse-Engineering
|
||||
Knowledge I have found interesting about the topic of x86 assembly
|
||||
# 🛠 x86 assembly Reverse Engineering 🛠
|
||||
Knowledge I have found interesting about the topic of **x86 assembly**.
|
||||
|
||||
##
|
||||
## ⚙️ Basics ⚙️
|
||||
|
||||
## x86 Registers
|
||||
| Intel Type | Bits | Name |
|
||||
| ------------- | ------------- | ------------- |
|
||||
| - | 8 Bit | **BYTE** |
|
||||
| 8086 | 16 Bit | **WORD** |
|
||||
| i386 | 32 Bit | **DWORD** |
|
||||
| x86 | 64 Bit | **QWORD** |
|
||||
|
||||
### Meanings:
|
||||
dword = **DWORD** = (double-word) </br>
|
||||
qword = **QWORD** = (quad-word)
|
||||
|
||||
### NOTE:
|
||||
On 32 Bit ARM CPUs a WORD is 32 Bits.
|
||||
|
||||
## 🔧 x86 Registers 🔧
|
||||
|
||||
*(Older Text from the University of Virginia Computer Science (2006), one of the best Guides for x86 Assembly)*
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue