prog8/examples/test.p8

19 lines
281 B
Plaintext
Raw Normal View History

%import textio
2020-12-07 22:29:34 +00:00
%import diskio
%import floats
2020-12-10 22:30:58 +00:00
%import graphics
%zeropage basicsafe
%import test_stack
2020-12-08 00:02:38 +00:00
%option no_sysinit
main {
2020-12-10 22:30:58 +00:00
sub start () {
uword xx = progend()
txt.print_uwhex(xx, 1)
txt.print_uwhex(progend(), 1)
2020-08-27 17:47:50 +00:00
2020-12-08 02:28:29 +00:00
test_stack.test()
}
2020-12-10 22:30:58 +00:00
2020-08-27 17:47:50 +00:00
}