mirror of
https://github.com/irmen/prog8.git
synced 2024-11-25 19:31:36 +00:00
14 lines
211 B
Lua
14 lines
211 B
Lua
%import textio
|
|
%zeropage dontuse
|
|
%option no_sysinit
|
|
%address $5000
|
|
%launcher none
|
|
|
|
main {
|
|
sub start() {
|
|
txt.print("address of start: ")
|
|
txt.print_uwhex(&start, true)
|
|
txt.nl()
|
|
}
|
|
}
|