prog8/examples/test.p8

17 lines
207 B
Plaintext
Raw Normal View History

2024-10-27 20:50:48 +00:00
%import textio
2024-11-08 18:43:59 +00:00
%zeropage basicsafe
%option no_sysinit
2024-10-18 20:22:34 +00:00
main {
sub start() {
repeat 100 {
cx16.r0++
if cx16.r0!=0
goto mylabel
}
mylabel:
2024-11-08 18:43:59 +00:00
}
}