1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

Save a few bytes

This commit is contained in:
polluks 2021-12-30 00:04:57 +01:00
parent ba33c3f57d
commit 4920ffa23a
2 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ eof: lda #0
devnotpresent:
lda #ENODEV
jmp __directerrno ; Sets _errno, clears _oserror, returns -1
.byte $2C ; Skip next opcode
; Error entry: The given file descriptor is not valid or not open

View File

@ -106,7 +106,7 @@ devnotpresent2:
pla
devnotpresent:
lda #ENODEV
jmp __directerrno ; Sets _errno, clears _oserror, returns -1
.byte $2C ; Skip next opcode
; Error entry: The given file descriptor is not valid or not open