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
c00962ca57
commit
251635dbd5
1 changed files with 9 additions and 1 deletions
10
README.md
10
README.md
|
|
@ -27,7 +27,11 @@ For the **EAX**, **EBX**, **ECX**, and **EDX** registers, subsections may be use
|
||||||
|
|
||||||
When referring to registers in assembly language, **the names are not case-sensitive**. For example, the names **EAX** and **eax** refer to the **same register**.
|
When referring to registers in assembly language, **the names are not case-sensitive**. For example, the names **EAX** and **eax** refer to the **same register**.
|
||||||
|
|
||||||

|
<p align="center">
|
||||||
|
<img src="Images/register.png">
|
||||||
|
</p>
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
In **x86 registers** have an '**e**' in front of their name.</br>
|
In **x86 registers** have an '**e**' in front of their name.</br>
|
||||||
Example: **e**ax, **e**bx, **e**cx, **e**dx, **e**bp
|
Example: **e**ax, **e**bx, **e**cx, **e**dx, **e**bp
|
||||||
|
|
@ -36,3 +40,7 @@ Example: **e**ax, **e**bx, **e**cx, **e**dx, **e**bp
|
||||||
In **x64** you have a '**r**' instead.</br>
|
In **x64** you have a '**r**' instead.</br>
|
||||||
Example: **r**ax, **r**bx, **r**cx, **r**dx, **r**bp</br>
|
Example: **r**ax, **r**bx, **r**cx, **r**dx, **r**bp</br>
|
||||||
You also have **double-precision floating point going from xmm0 to xmm15**.*
|
You also have **double-precision floating point going from xmm0 to xmm15**.*
|
||||||
|
|
||||||
|
### 🚩 EFLAGS 🚩
|
||||||
|
|
||||||
|

|
||||||
|
|
|
||||||
Loading…
Reference in a new issue