Machine language
From ThorstensHome
Revision as of 09:10, 3 December 2014 by ThorstenStaerk (Talk | contribs)
This shows a mapping of x86 machine language to assembler
x86 machine language | assembler command | remark |
---|---|---|
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 |