https://github.com/akkartik/mu/blob/master/examples/ex8.subx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 == code 0x09000000
18
19
20
21
22 Entry:
23
24 89/copy 3/mod/direct 5/rm32/EBP . . . 4/r32/ESP . .
25
26
27 ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 8/disp8 .
28
29 e8/call ascii-length/disp32
30
31 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 4/imm32
32
33
34 89/copy 3/mod/direct 3/rm32/EBX . . . 0/r32/EAX . .
35 b8/copy-to-EAX 1/imm32/exit
36 cd/syscall 0x80/imm8
37
38 ascii-length:
39
40 8b/copy 1/mod/*+disp8 4/rm32/sib 4/base/ESP 4/index/none . 2/r32/EDX 4/disp8 .
41
42 b8/copy-to-EAX 0/imm32
43 $ascii-length:loop:
44
45 8a/copy-byte 0/mod/* 2/rm32/EDX . . . 1/r32/CL . .
46
47 81 7/subop/compare 3/mod/direct 1/rm32/ECX . . . . . 0/imm32
48 74/jump-if-equal $ascii-length:end/disp8
49
50 42/increment-EDX
51
52 40/increment-EAX
53
54 eb/jump $ascii-length:loop/disp8
55 $ascii-length:end:
56
57 c3/return
58
59 == data 0x0a000000
60
61