prog8/examples/test.p8

16 lines
368 B
Plaintext
Raw Normal View History

2020-08-27 18:47:22 +00:00
%import c64textio
2020-08-27 17:47:50 +00:00
%zeropage basicsafe
main {
sub start() {
;asmsub clear_screen (ubyte char @ A, ubyte color @ Y) clobbers(A) { ...}
; TODO dont cause name conflict if we define sub or sub with param 'color' or even a var 'color' later.
; sub color(...) {}
; sub other(ubyte color) {} ; TODO don't cause name conflict
2020-08-27 17:47:50 +00:00
c64.CHROUT('\n')
}
}