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.
|
(
|
|
(include other)
|
|
(def BAR (=add FOO 1000))
|
|
|
|
(cmp BAR 1123 (ne? (fault)))
|
|
|
|
(include utils/itoa.csn)
|
|
(include "utils/printnum")
|
|
|
|
(mkbf r0)
|
|
(call itoa r0 BAR)
|
|
(lds @cout @r0)
|
|
(del @r0)
|
|
(ld @cout '\n')
|
|
|
|
(call printnum BAR)
|
|
(ld @cout '\n')
|
|
)
|
|
|