mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
15 lines
296 B
Lua
15 lines
296 B
Lua
%import textio
|
|
%option no_sysinit
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
byte @shared bb = -44
|
|
uword uw = 8888 + (bb as ubyte)
|
|
txt.print_uw(uw) ; 9100
|
|
txt.nl()
|
|
txt.print_uw(8888 + (bb as ubyte)) ; 9100
|
|
txt.nl()
|
|
}
|
|
}
|