Use character constants where appropriate.

This commit is contained in:
Stephan Mühlstrasser
2015-02-21 20:53:16 +01:00
parent cbb6f82b99
commit 1b9aa7c6f3
2 changed files with 2 additions and 2 deletions

View File

@@ -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