mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 22:30:46 +00:00
18 lines
232 B
Lua
18 lines
232 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
|
|
cx16.r0 = 500
|
|
if cx16.r0 in 127 to 5555
|
|
cx16.r0++
|
|
|
|
|
|
cx16.r0 = 50
|
|
if cx16.r0 in 5555 downto 127
|
|
cx16.r0++
|
|
|
|
}
|
|
}
|