uxn/examples/subroutines.usm

26 lines
206 B
Plaintext
Raw Normal View History

2021-02-01 17:40:27 -05:00
< subroutines >
:begin
.addall JSR ADD ADD
2021-02-01 23:21:27 -05:00
06 EQU .isequal JSR
2021-02-01 17:40:27 -05:00
BRK
:add1
2021-02-01 23:21:27 -05:00
01 RTS
2021-02-01 17:40:27 -05:00
:add2
2021-02-01 23:21:27 -05:00
02 RTS
2021-02-01 17:40:27 -05:00
:add3
2021-02-01 23:21:27 -05:00
03 RTS
2021-02-01 17:40:27 -05:00
:addall
.add1 JSR
.add2 JSR
.add3 JSR
RTS
:isequal
2021-02-01 23:21:27 -05:00
.addall JSR ff
2021-02-01 17:40:27 -05:00
RTS