prog8/examples/test.p8
2023-12-31 01:28:17 +01:00

14 lines
233 B
Lua

%import textio
%zeropage basicsafe
; Note: this program can be compiled for multiple target systems.
main {
sub start() {
cx16.r0L=1
while cx16.r0L < 10 and cx16.r0L>0 {
cx16.r0L++
}
}
}