prog8/examples/test.p8

23 lines
261 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
2021-10-30 13:15:11 +00:00
main {
sub start() {
txt.print("yo\n")
uword jumps = $4000
if_cc
goto jumps
goto jumps
}
}
test $4000 {
%option force_output
jumper:
%asm {{
rts
}}
}