常用部分汇编代码与机器码

2016-10-18

osx

1
2
3
4
5
6
7
8
9
nop;->90

mov al,01;->B0 01

mov ax,01;->B8 01 00

mov eax,01;->66 B8 01 00 00 00

JMP ->E9/EB

<–more–>

ios:

1
2
3
4
5
6
7
nop->c0 46

movs r0,#01->01 20

movs r1,#00->00 21

cmp r0, #0-> 00 28
blog comments powered by Disqus