prog8/examples/test.p8

14 lines
183 B
Lua

%zeropage basicsafe
main {
sub start() {
word[4] birdX
byte testbyte = 0
ubyte j = 0
repeat {
birdX[j] += testbyte
}
}
}