uxn/examples/subroutines.usm

26 lines
206 B
Plaintext
Raw Normal View History

2021-02-01 17:40:27 -05:00
< subroutines >
:begin
2021-02-02 16:02:51 -05:00
.addall JSI ADD ADD
06 EQU .isequal JSI
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
2021-02-02 16:02:51 -05:00
.add1 JSI
.add2 JSI
.add3 JSI
2021-02-01 17:40:27 -05:00
RTS
:isequal
2021-02-02 16:02:51 -05:00
.addall JSI ff
2021-02-01 17:40:27 -05:00
RTS