mirror of
https://github.com/irmen/prog8.git
synced 2025-02-19 11:31:07 +00:00
26 lines
361 B
Lua
26 lines
361 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte @shared xx
|
|
ubyte @shared yy
|
|
ubyte camg
|
|
|
|
ubyte @shared interlaced = (camg & $04) != 0
|
|
|
|
yy = xx
|
|
yy = yy==7
|
|
|
|
yy++
|
|
yy = xx==7
|
|
yy++
|
|
|
|
; if xx==99 {
|
|
; xx++
|
|
; yy++
|
|
; }
|
|
; txt.nl()
|
|
}
|
|
}
|