mirror of
https://github.com/irmen/prog8.git
synced 2024-11-27 03:50:27 +00:00
14 lines
233 B
Lua
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++
|
|
}
|
|
}
|
|
}
|