removed DIRECT_SCREEN define

git-svn-id: svn://svn.cc65.org/cc65/trunk@176 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg
2000-07-21 08:26:44 +00:00
parent 2f933e35d7
commit 72294dc011
5 changed files with 3 additions and 114 deletions

View File

@@ -19,11 +19,7 @@ _cclear:
cmp #0 ; Is the length zero?
beq L9 ; Jump if done
sta tmp1
.ifdef DIRECT_SCREEN
L1: lda #0 ; Blank - screen code
.else
L1: lda #$20 ; Blank
.endif
jsr cputdirect ; Direct output
dec tmp1
bne L1