prog8/examples/test.p8
2022-10-30 12:55:06 +01:00

21 lines
276 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
cx16.r0 = 42
goto foobar
my_label:
txt.print_uwhex(cx16.r0, true)
txt.spc()
cx16.r0--
if cx16.r0
goto my_label
sys.exit(0)
foobar:
txt.print("yeooo\n")
goto my_label
}
}