prog8/examples/test.p8
2024-05-21 21:53:58 +02:00

16 lines
196 B
Lua

%zeropage basicsafe
main {
sub start() {
ubyte @requirezp b1
ubyte @zp b2
ubyte b3
ubyte @nozp b4
b1++
b2++
b3++
b4++
}
}