mirror of
https://github.com/irmen/prog8.git
synced 2024-11-27 03:50:27 +00:00
14 lines
183 B
Lua
14 lines
183 B
Lua
%zeropage basicsafe
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
word[4] birdX
|
|
byte testbyte = 0
|
|
ubyte j = 0
|
|
repeat {
|
|
birdX[j] += testbyte
|
|
}
|
|
}
|
|
}
|