prog8/examples/test.p8

18 lines
279 B
Plaintext
Raw Normal View History

%import test_stack
%import textio
%zeropage basicsafe
2020-12-08 00:02:38 +00:00
%option no_sysinit
main {
sub start () {
txt.lowercase()
txt.print_ub(txt.width())
txt.chrout('\n')
txt.print_ub(txt.height())
txt.chrout('\n')
2020-12-25 01:59:19 +00:00
test_stack.test()
}
2020-12-26 00:25:52 +00:00
2020-08-27 17:47:50 +00:00
}