New code from Oliver Schmidt

git-svn-id: svn://svn.cc65.org/cc65/trunk@3351 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-01-06 12:26:47 +00:00
parent 2ebb276929
commit 8188795240
15 changed files with 123 additions and 144 deletions

View File

@@ -20,10 +20,10 @@ _chline:
chlinedirect:
cmp #$00 ; Is the length zero?
beq L9 ; Jump if done
beq done ; Jump if done
sta tmp1
L1: txa ; Screen code
: txa ; Screen code
jsr cputdirect ; Direct output
dec tmp1
bne L1
L9: rts
bne :-
done: rts