https://github.com/akkartik/mu/blob/master/apps/factorial3.subx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 == code
21
22 Entry:
23
24 89/<- %ebp 4/r32/esp
25
26
27 (new-segment *Heap-size Heap)
28
29
30
31 81 7/subop/compare *ebp 1/imm32
32 7e/jump-if-<= $run-main/disp8
33
34 (kernel-string-equal? *(ebp+8) "test")
35
36 3d/compare-eax-and 0/imm32/false
37 74/jump-if-= $run-main/disp8
38
39 (run-tests)
40
41 8b/-> *Num-test-failures 3/r32/ebx
42 eb/jump $main:end/disp8
43 $run-main:
44
45 (factorial 5)
46
47 89/<- %ebx 0/r32/eax
48 $main:end:
49 e8/call syscall_exit/disp32
50
51 factorial:
52
53 55/push-ebp
54 89/<- %ebp 4/r32/esp
55
56 53/push-ebx
57
58 b8/copy-to-eax 1/imm32
59 81 7/subop/compare *(ebp+8) 1/imm32
60 7e/jump-if-<= $factorial:end/disp8
61
62 8b/-> *(ebp+8) 3/r32/ebx
63 4b/decrement-ebx
64
65 (factorial %ebx)
66
67 f7 4/subop/multiply-into-eax *(ebp+8)
68
69 $factorial:end:
70
71 5b/pop-to-ebx
72
73 89/<- %esp 5/r32/ebp
74 5d/pop-to-ebp
75 c3/return
76
77 test-factorial:
78 (factorial 5)
79 (check-ints-equal %eax 0x78 "F - test-factorial")
80 c3/return