prog8/examples/test.p8
2019-03-11 22:30:32 +01:00

14 lines
282 B
Lua

%import c64utils
%zeropage basicsafe
~ main {
; @todo see problem in looplabelproblem.p8
; @todo compiler error for using literal values other than 0 or 1 with boolean expressions
sub start() {
c64.CLEARSCR() ; @todo empty stack exception in vm
}
}