mirror of
https://github.com/irmen/prog8.git
synced 2025-03-14 11:34:32 +00:00
15 lines
168 B
Lua
15 lines
168 B
Lua
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
ubyte @shared width
|
|
|
|
sub start() {
|
|
if width==22 or width==33 {
|
|
cx16.r1++
|
|
}
|
|
}
|
|
|
|
}
|
|
|