Difference between revisions of "Machine language"
From ThorstensHome
Line 3: | Line 3: | ||
{| class="wikitable sortable" border=1 | {| class="wikitable sortable" border=1 | ||
! x86 machine language !! assembler command !! remark | ! x86 machine language !! assembler command !! remark | ||
+ | |- | ||
+ | | 54 || push rsp | ||
|- | |- | ||
| 85 c0 || test eax,eax || | | 85 c0 || test eax,eax || |
Revision as of 09:40, 3 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 |