prog8/examples/test.p8

13 lines
138 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() {
uword addr=$d020
2020-08-24 23:48:23 +00:00
ubyte q =2
@(addr) += q
2020-08-23 22:26:26 +00:00
}
}
2020-08-24 21:18:46 +00:00