mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
Use character constants where appropriate.
This commit is contained in:
parent
cbb6f82b99
commit
1b9aa7c6f3
@ -22,7 +22,7 @@ _cclear:
|
||||
cmp #0 ; Is the length zero?
|
||||
beq L9 ; Jump if done
|
||||
sta tmp1
|
||||
L1: lda #$20 ; Blank - screen code
|
||||
L1: lda #' '
|
||||
jsr cputdirect ; Direct output
|
||||
dec tmp1
|
||||
bne L1
|
||||
|
@ -12,7 +12,7 @@
|
||||
BANKS = VIDEORAMSIZE / $100
|
||||
|
||||
_clrscr:
|
||||
lda #$20 ; ' '
|
||||
lda #' '
|
||||
ldy #BANKS
|
||||
ldx #$00
|
||||
staloc:
|
||||
|
Loading…
Reference in New Issue
Block a user