1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-10 23:29:05 +00:00
cc65/libsrc/c64/soft80_kclrscr.s

72 lines
1.3 KiB
ArmAsm
Raw Normal View History

.export soft80_kclrscr
.import soft80_kplot
.import __bgcolor
2015-10-06 17:33:43 +00:00
.importzp ptr1
.include "c64.inc"
.include "soft80.inc"
soft80_kclrscr:
2015-10-06 17:33:43 +00:00
lda #<soft80_bitmap
sta ptr1
lda #>soft80_bitmap
sta ptr1+1
lda #$ff
2015-10-06 17:33:43 +00:00
ldx #$1f
@lp2:
ldy #0
@lp1:
sta (ptr1),y
iny
bne @lp1
inc ptr1+1
dex
bne @lp2
;ldx #$00
@lp3:
sta soft80_bitmap+$1e40,x
inx
2015-10-06 17:33:43 +00:00
bne @lp3
sei
ldy $01
lda #$34
sta $01
lda CHARCOLOR
and #$f0
ora __bgcolor
2015-10-06 17:33:43 +00:00
jsr clear ; clear vram
2015-10-06 17:33:43 +00:00
inc $01 ; -> $35
lda __bgcolor
2015-10-06 17:33:43 +00:00
jsr clear ; clear color ram
sty $01
cli
ldx #0
ldy #0
clc
jmp soft80_kplot
2015-10-06 17:33:43 +00:00
; clear loop for colram and vram
clear:
;ldx #$00
@lp1:
sta soft80_colram,x
sta soft80_colram+$100,x
sta soft80_colram+$200,x
sta soft80_colram+$2e8,x
inx
bne @lp1
rts