Add Text x86 registers

This commit is contained in:
Alpay Yildirim 2018-09-12 11:28:49 +02:00 committed by GitHub
parent 9dd514459d
commit b38d4d0591
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,3 +2,11 @@
Knowledge I have found interesting about the topic of x86 assembly Knowledge I have found interesting about the topic of x86 assembly
## x86 Registers ## x86 Registers
![x86 assembly Registers](x86-registers.png) ![x86 assembly Registers](x86-registers.png)
In **x86 registers** have an '**e**' in front of their name.</br>
Example: **e**ax, **e**bx, **e**cx, **e**dx, **e**bp
*Additional Info: </br>
In **x64** you have a '**r**' instead.</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**.*