mirror of
https://github.com/irmen/prog8.git
synced 2024-11-03 13:07:54 +00:00
19 lines
281 B
Lua
19 lines
281 B
Lua
%import textio
|
|
%import diskio
|
|
%import floats
|
|
%import graphics
|
|
%zeropage basicsafe
|
|
%import test_stack
|
|
%option no_sysinit
|
|
|
|
main {
|
|
sub start () {
|
|
uword xx = progend()
|
|
txt.print_uwhex(xx, 1)
|
|
txt.print_uwhex(progend(), 1)
|
|
|
|
test_stack.test()
|
|
}
|
|
|
|
}
|