mirror of
https://github.com/irmen/prog8.git
synced 2024-11-28 10:51:14 +00:00
13 lines
215 B
Lua
13 lines
215 B
Lua
%import textio
|
|
%option no_sysinit
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
txt.print_uwhex(sys.progstart(), true)
|
|
txt.spc()
|
|
txt.print_uwhex(sys.progend(), true)
|
|
txt.nl()
|
|
}
|
|
}
|