mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
6dc8621fa5
as documented in conio.h
32 lines
777 B
ArmAsm
32 lines
777 B
ArmAsm
;
|
|
; void clrscr (void);
|
|
;
|
|
.export _clrscr
|
|
.import plot
|
|
.importzp CURS_X, CURS_Y
|
|
.include "c1p.inc"
|
|
|
|
; Adapted from the Challenger Character Graphics
|
|
; Reference Manual, "2.3.3 MACHINE LANGUAGE SCREEN CLEAR"
|
|
; This is self-modifying code!
|
|
BANKS = VIDEORAMSIZE / $100
|
|
|
|
_clrscr:
|
|
lda #$20 ;' '
|
|
ldy #BANKS
|
|
ldx #$00
|
|
staloc:
|
|
sta SCRNBASE,X
|
|
inx
|
|
bne staloc
|
|
inc staloc+2
|
|
dey
|
|
bne staloc
|
|
lda #>(SCRNBASE); load high byte
|
|
sta staloc+2 ; restore base address
|
|
|
|
lda #$00 ; cursor in upper left corner
|
|
sta CURS_X
|
|
sta CURS_Y
|
|
jmp plot ; Set the cursor position
|