2015-11-17 14:14:15 +00:00
|
|
|
;
|
|
|
|
; Clear (erase) the screen.
|
|
|
|
;
|
|
|
|
; Support the full 128- x 64-tile background.
|
|
|
|
;
|
|
|
|
|
2015-10-02 14:50:22 +00:00
|
|
|
.export _clrscr
|
|
|
|
|
|
|
|
.import plot
|
2014-11-29 13:18:48 +00:00
|
|
|
|
2015-08-29 13:58:57 +00:00
|
|
|
.include "pce.inc"
|
2015-09-19 13:37:39 +00:00
|
|
|
.include "extzp.inc"
|
2014-11-29 13:18:48 +00:00
|
|
|
|
|
|
|
_clrscr:
|
2015-11-26 20:06:20 +00:00
|
|
|
VREG VDC_MAWR, $0000
|
2015-08-29 13:58:57 +00:00
|
|
|
st0 #VDC_VWR
|
2015-11-26 20:06:20 +00:00
|
|
|
|
2015-08-29 13:58:57 +00:00
|
|
|
ldy #$40
|
|
|
|
rowloop:
|
|
|
|
ldx #$80
|
|
|
|
colloop:
|
2015-11-26 20:06:20 +00:00
|
|
|
st1 #' ' ; low byte of char. index
|
|
|
|
st2 #$02 ; background color, high nybble of char. index
|
2015-08-29 13:58:57 +00:00
|
|
|
dex
|
|
|
|
bne colloop
|
|
|
|
dey
|
|
|
|
bne rowloop
|
2014-11-29 13:18:48 +00:00
|
|
|
|
2015-09-19 13:37:39 +00:00
|
|
|
; Go to the home position.
|
|
|
|
|
|
|
|
stz CURS_X
|
|
|
|
stz CURS_Y
|
2015-09-20 10:18:41 +00:00
|
|
|
jmp plot
|
2014-11-29 13:18:48 +00:00
|
|
|
|
2015-07-13 10:10:09 +00:00
|
|
|
;-------------------------------------------------------------------------------
|
|
|
|
; force the init constructor to be imported
|
|
|
|
|
|
|
|
.import initconio
|
2015-08-29 13:58:57 +00:00
|
|
|
conio_init = initconio
|