prog8/examples/test.p8
2024-12-30 00:00:31 +01:00

15 lines
168 B
Lua

%zeropage basicsafe
%option no_sysinit
main {
ubyte @shared width
sub start() {
if width==22 or width==33 {
cx16.r1++
}
}
}