prog8/examples/test.p8

17 lines
207 B
Plaintext
Raw Normal View History

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