Difference between revisions of "Machine language"
From ThorstensHome
Line 17: | Line 17: | ||
|- | |- | ||
| eb fd || short jump to executing the byte before eb || | | eb fd || short jump to executing the byte before eb || | ||
+ | |- | ||
+ | | fa || cli | ||
|} | |} |
Revision as of 08:43, 4 December 2014
This shows a mapping of x86 machine language to assembler
x86 machine language | assembler command | remark |
---|---|---|
54 | push rsp | |
85 c0 | test eax,eax | |
90 | NOP | |
b8 00 00 00 00 | mov eax,0x0 | |
c3 | ret | |
cd 10 | int 10 | |
eb fd | short jump to executing the byte before eb | |
fa | cli |