1: .globl succ
2: .globl .ng,.nt,.cm
3:
4: / !
5:
6: .nt:
7: tst (sp)
8: beq 1f
9: clr (sp)
10: br 9f
11: 1:
12: mov $1,(sp)
13: br 9f
14:
15: /unary -
16:
17: .ng:
18: neg (sp)
19: br 9f
20:
21: / ~
22:
23: .cm:
24: com (sp)
25:
26: 9:
27: jmp succ
Defined functions
.cm
declared in line
2; defined in line
23; used 2 times
.ng
declared in line
2; defined in line
17; used 1 times
.nt
declared in line
2; defined in line
6; used 1 times