mirror of
https://github.com/cc65/cc65.git
synced 2024-11-05 08:05:51 +00:00
36 lines
965 B
ArmAsm
36 lines
965 B
ArmAsm
;
|
|
; 2019-07-07, Jede (jede@oric.org)
|
|
;
|
|
; void cclearxy (unsigned char x, unsigned char y, unsigned char length);
|
|
; void cclear (unsigned char length);
|
|
;
|
|
|
|
.export _cclearxy, _cclear
|
|
.import update_adscr, display_conio
|
|
|
|
.importzp tmp1
|
|
.import popax
|
|
.include "telestrat.inc"
|
|
|
|
|
|
_cclearxy:
|
|
pha ; Save the length
|
|
jsr popax ; Get X and Y
|
|
sta SCRY ; Store Y
|
|
stx SCRX ; Store X
|
|
jsr update_adscr
|
|
pla ; Restore the length and run into _cclear
|
|
|
|
_cclear:
|
|
tax ; Is the length equal to zero?
|
|
beq @L2 ; Yes we skip
|
|
@L1:
|
|
stx tmp1 ; Save X
|
|
lda #' ' ; Erase current char
|
|
jsr display_conio
|
|
ldx tmp1
|
|
dex
|
|
bne @L1
|
|
@L2:
|
|
rts
|