https://github.com/akkartik/mu/blob/master/apps/ex8.subx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 == code
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 e8/call syscall_exit/disp32
36
37 ascii-length:
38
39 8b/copy 1/mod/*+disp8 4/rm32/sib 4/base/esp 4/index/none . 2/r32/edx 4/disp8 .
40
41 b8/copy-to-eax 0/imm32
42 $ascii-length:loop:
43
44 8a/copy-byte 0/mod/* 2/rm32/edx . . . 1/r32/CL . .
45
46 81 7/subop/compare 3/mod/direct 1/rm32/ecx . . . . . 0/imm32/null
47 74/jump-if-= $ascii-length:end/disp8
48
49 42/increment-edx
50
51 40/increment-eax
52
53 eb/jump $ascii-length:loop/disp8
54 $ascii-length:end:
55
56 c3/return
57
58 == data
59
60