prog8/examples/test.p8

16 lines
155 B
Plaintext
Raw Normal View History

%import c64utils
%zeropage basicsafe
2020-07-26 22:32:59 +00:00
main {
2020-07-26 21:32:20 +00:00
sub start() {
subje(12345)
}
sub subje(uword xx) {
@($c000) = lsb(xx)
2020-08-23 22:26:26 +00:00
}
}
2020-08-24 21:18:46 +00:00