1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-15 17:30:06 +00:00

Merge pull request #1637 from polluks2/save_a_few_bytes

Save a few bytes
This commit is contained in:
Bob Andrews 2022-01-30 13:21:41 +01:00 committed by GitHub
commit b00cb182d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 via BIT <abs>
; 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 via BIT <abs>
; Error entry: The given file descriptor is not valid or not open