mirror of
https://github.com/AYIDouble/x86-Assembly-Reverse-Engineering.git
synced 2026-06-21 00:46:54 +08:00
488 B
488 B
x86-assembly-Reverse-Engineering
Knowledge I have found interesting about the topic of x86 assembly
x86 Registers
In x86 registers have an 'e' in front of their name.
Example: eax, ebx, ecx, edx, ebp
Additional Info:
In x64 you have a 'r' instead.
Example: rax, rbx, rcx, rdx, rbp
You also have double-precision floating point going from xmm0 to xmm15.
