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.
13 lines
208 B
13 lines
208 B
4 years ago
|
(
|
||
|
(def FOO 14)
|
||
|
|
||
|
(ld r0 (=add 14 1))
|
||
|
(cmp r0 15 (ne? (fault "1")))
|
||
|
|
||
|
(ld r0 (=add FOO 1))
|
||
|
(cmp r0 15 (ne? (fault "2")))
|
||
|
|
||
|
(ld r0 (=add (sub FOO 2) 3))
|
||
|
(cmp r0 15 (ne? (fault "3")))
|
||
|
)
|