mirror of
https://github.com/irmen/prog8.git
synced 2024-12-26 14:29:35 +00:00
21 lines
295 B
Lua
21 lines
295 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
|
|
main {
|
|
sub start() {
|
|
|
|
ubyte rasterCount = 231
|
|
|
|
if rasterCount >= 230
|
|
txt.print("y1")
|
|
|
|
if rasterCount ^ $80 >= 230
|
|
txt.print("y2")
|
|
|
|
if (rasterCount ^ $80) >= 230
|
|
txt.print("y3")
|
|
|
|
}
|
|
}
|