prog8/examples/test.p8
2021-10-12 21:35:27 +02:00

13 lines
175 B
Lua

%import textio
%import test_stack
%zeropage basicsafe
main {
sub start() {
%asminclude "fozsdfsdf.asm"
txt.print("ok")
test_stack.test()
}
}