mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
14 lines
282 B
Lua
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
|
|
}
|
|
}
|