mirror of
https://github.com/The-Art-of-Hacking/h4cker
synced 2024-11-22 02:43:02 +00:00
Update registers.md
This commit is contained in:
parent
055789a512
commit
a7eea205f5
1 changed files with 2 additions and 8 deletions
|
@ -1,14 +1,8 @@
|
||||||
# Good Information about Registers
|
# Good Information about Registers
|
||||||
|
|
||||||
x64 extends x86's 8 general-purpose registers to be 64-bit, and adds 8 new 64-bit registers.
|
- Intel's Architecture Documentation: https://software.intel.com/en-us/articles/intel-sdm
|
||||||
|
|
||||||
The 64-bit registers have names beginning with "r", so for example the 64-bit extension of **eax** is called **rax**.
|
Additional Notes: The x64 architecture extends x86's 8 general-purpose registers to be 64-bit, and adds 8 new 64-bit registers. The 64-bit registers have names beginning with "r", so for example the 64-bit extension of **eax** is called **rax**. The lower 32 bits, 16 bits, and 8 bits of each register are directly addressable in operands. This includes registers, like **esi**, whose lower 8 bits were not previously addressable. The following table specifies the assembly-language names for the lower portions of 64-bit registers.
|
||||||
|
|
||||||
The lower 32 bits, 16 bits, and 8 bits of each register are directly addressable in operands.
|
|
||||||
|
|
||||||
This includes registers, like **esi**, whose lower 8 bits were not previously addressable.
|
|
||||||
|
|
||||||
The following table specifies the assembly-language names for the lower portions of 64-bit registers.
|
|
||||||
|
|
||||||
<table><colgroup><col width="25%"> <col width="25%"> <col width="25%"> <col width="25%"></colgroup>
|
<table><colgroup><col width="25%"> <col width="25%"> <col width="25%"> <col width="25%"></colgroup>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue