prog8/examples/test.p8

10 lines
112 B
Lua

%zeropage basicsafe
main {
sub start() {
repeat cx16.r0 {
cx16.r1L++
}
}
}