1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-08 10:29:04 +00:00

some fixes

git-svn-id: svn://svn.cc65.org/cc65/trunk@4829 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg 2010-10-28 21:02:09 +00:00
parent 1aeb5651f5
commit 03ed1b3a6a

View File

@ -90,8 +90,8 @@ cioerr: sty __oserror
rts
copychar: lda (ptr1),y ; src=y dest=tmp1
cmp #' '
ldy tmp1
cmp #' '
beq @break
sta (ptr1),y
iny
@ -105,6 +105,9 @@ copychar: lda (ptr1),y ; src=y dest=tmp1
sta ICCOM,x
jsr CIOV
bmi @cioerr
ldx #0
stx __oserror ; clear system specific error code
txa
rts
@cioerr: jmp __do_oserror
.endproc