mirror of
https://github.com/irmen/prog8.git
synced 2025-01-12 19:29:50 +00:00
16 lines
196 B
Lua
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++
|
|
}
|
|
}
|