From 5f36ad2d5320ee90f65ad07d4d623499a2e8b8ff Mon Sep 17 00:00:00 2001 From: cpg Date: Wed, 3 Oct 2001 15:56:42 +0000 Subject: [PATCH] a small optimization git-svn-id: svn://svn.cc65.org/cc65/trunk@1007 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/atari/close.s | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libsrc/atari/close.s b/libsrc/atari/close.s index c7995e953..777143593 100644 --- a/libsrc/atari/close.s +++ b/libsrc/atari/close.s @@ -22,15 +22,14 @@ lda #CLOSE sta ICCOM,x jsr CIOV - bpl ok - jmp __do_oserror - + bmi closerr ok: ldx #0 stx __oserror ; clear system specific error code txa rts inverr: jmp __inviocb +closerr:jmp __do_oserror .endproc -- 2.39.5