mirror of
https://github.com/irmen/prog8.git
synced 2024-12-02 07:49:27 +00:00
17 lines
232 B
Lua
17 lines
232 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
sub start() {
|
|
byte @shared x
|
|
word @shared w
|
|
|
|
if x==0 or x==1 or x==2
|
|
x++
|
|
|
|
if w==0 or w==1 or w==2
|
|
x++
|
|
}
|
|
}
|