mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
17 lines
193 B
Lua
17 lines
193 B
Lua
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
ubyte tw = text.width()
|
|
sub start() {
|
|
tw++
|
|
}
|
|
}
|
|
|
|
text {
|
|
sub width() -> ubyte {
|
|
cx16.r0++
|
|
return 80
|
|
}
|
|
}
|