mirror of
https://github.com/irmen/prog8.git
synced 2024-11-28 10:51:14 +00:00
13 lines
181 B
Lua
13 lines
181 B
Lua
%import textio
|
|
%option no_sysinit
|
|
%zeropage basicsafe
|
|
%address $f200
|
|
%output raw
|
|
%launcher none
|
|
|
|
main {
|
|
sub start() {
|
|
txt.print_uwhex(cbm.MEMTOP(0, true), true)
|
|
}
|
|
}
|