Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 2.52 KB

assembly.md

File metadata and controls

13 lines (8 loc) · 2.52 KB
description
A few cheatsheet-like things about the Assembly language

Assembly

Registers

Generally, r-prefixed registers are 64-bit, e-prefixed registers are 32-bit, non-prefixed registers are 16-bit, and l-suffixed registers are 8-bit. For r8-15 see the special cases below (source):

64-bit registerLower 32 bitsLower 16 bitsLower 8 bits
raxeaxaxal
rbxebxbxbl
rcxecxcxcl
rdxedxdxdl
rsiesisisil
rdiedididil
rbpebpbpbpl
rspespspspl
r8r8dr8wr8b (r8l)
r9r9dr9wr9b (r9l)
r10r10dr10wr10b (r10l)
r11r11dr11wr11b (r11l)
r12r12dr12wr12b (r12l)
r13r13dr13wr13b (r13l)
r14r14dr14wr14b (r14l)
r15r15dr15wr15b (r15l)

See shellcode.md for writing malicious Assembly code and some examples of compiling