mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
13 lines
175 B
Lua
13 lines
175 B
Lua
%import textio
|
|
%import test_stack
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
%asminclude "fozsdfsdf.asm"
|
|
|
|
txt.print("ok")
|
|
test_stack.test()
|
|
}
|
|
}
|