forked from MightyPork/crsn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
229 B
16 lines
229 B
4 years ago
|
(
|
||
|
(main
|
||
|
(call fac 5)
|
||
|
(ld r0 res0)
|
||
|
(halt)
|
||
|
)
|
||
|
(fac
|
||
|
(cmp arg0 2
|
||
|
(eq? (ret 2)))
|
||
|
(sub r0 arg0 1)
|
||
|
(call fac r0)
|
||
|
(mul r0 arg0 res0)
|
||
|
(ret r0)
|
||
|
)
|
||
|
)
|