prog8/examples/test.p8
2021-12-13 00:17:59 +01:00

13 lines
141 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
ubyte @shared yy
if yy&64 {
yy++
}
}
}