prog8/examples/test.p8

11 lines
117 B
Plaintext
Raw Normal View History

2024-04-10 20:33:22 +00:00
%import textio
%zeropage basicsafe
main {
sub start() {
2024-05-12 01:02:54 +00:00
uword workFunc=$2000
void = call(workFunc)
}
}