prog8/examples/test.p8

14 lines
183 B
Plaintext
Raw Normal View History

%zeropage basicsafe
2023-06-27 01:59:22 +02:00
main {
2023-06-27 01:59:22 +02:00
sub start() {
word[4] birdX
byte testbyte = 0
ubyte j = 0
repeat {
birdX[j] += testbyte
}
2023-06-27 01:59:22 +02:00
}
}