mirror of
https://github.com/irmen/prog8.git
synced 2025-02-10 14:32:20 +00:00
13 lines
141 B
Lua
13 lines
141 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte @shared yy
|
|
|
|
if yy&64 {
|
|
yy++
|
|
}
|
|
}
|
|
}
|