prog8/examples/test.p8
2019-03-21 22:36:46 +01:00

23 lines
330 B
Lua

%zeropage basicsafe
; @todo fix this (issue #11 on github): it generates invalid asm due to improper label names
~ main {
sub start() {
if A>10 {
A=44
while true {
;derp
}
} else {
gameover:
goto gameover
}
}
}