prog8/examples/test.p8

28 lines
489 B
Plaintext
Raw Normal View History

2019-02-12 20:53:57 +00:00
%import c64utils
%zeropage basicsafe
2019-01-26 21:46:01 +00:00
~ main {
2019-02-14 01:23:59 +00:00
; @todo test memset/memcopy (there's a bug in memcopy?)
2019-02-23 21:13:12 +00:00
; @todo see looplabelproblem.p8
2019-02-14 01:23:59 +00:00
2019-02-21 00:31:33 +00:00
;ubyte x = rnd82() % 6 ; @todo fix compiler crash + always 0???
2019-02-14 01:23:59 +00:00
2019-02-21 00:31:33 +00:00
; if(X and c64scr.getcc(1,1)!=32) ... @todo the result value of the asmsub getcc is not put on the eval stack when used in an expression
2019-02-14 01:23:59 +00:00
2019-02-21 00:31:33 +00:00
sub start() {
2019-02-12 20:53:57 +00:00
}
2019-02-23 21:13:12 +00:00
sub drawNext(ubyte x) {
A=x
}
sub drawNextW(uword w) {
w++
}
}