prog8/examples/test.p8

11 lines
117 B
Plaintext
Raw Normal View History

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