0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-08 15:25:05 +00:00
uxn/examples/subroutines.usm
2021-02-01 20:21:27 -08:00

25 lines
206 B
Text

< subroutines >
:begin
.addall JSR ADD ADD
06 EQU .isequal JSR
BRK
:add1
01 RTS
:add2
02 RTS
:add3
03 RTS
:addall
.add1 JSR
.add2 JSR
.add3 JSR
RTS
:isequal
.addall JSR ff
RTS