mirror of
https://github.com/irmen/prog8.git
synced 2025-02-20 03:29:01 +00:00
12 lines
199 B
Lua
12 lines
199 B
Lua
%option no_sysinit
|
|
%import gfx_lores
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
gfx_lores.set_screen_mode()
|
|
gfx_lores.clear_screen(0)
|
|
gfx_lores.line(0,0,319,239,5)
|
|
}
|
|
}
|