prog8/examples/test.p8
2022-01-21 22:55:59 +01:00

23 lines
261 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
txt.print("yo\n")
uword jumps = $4000
if_cc
goto jumps
goto jumps
}
}
test $4000 {
%option force_output
jumper:
%asm {{
rts
}}
}