mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 00:29:31 +00:00
Fixed typo (Ilegal).
This commit is contained in:
parent
b92630142f
commit
449fceebdd
@ -21,7 +21,7 @@
|
||||
tax
|
||||
jsr isdisk
|
||||
bcc open
|
||||
lda #9 ; "Ilegal device"
|
||||
lda #9 ; "Illegal device"
|
||||
rts
|
||||
|
||||
; Open channel
|
||||
|
@ -48,7 +48,7 @@ __sys_oserrlist:
|
||||
sys_oserr_entry 6, "File not input"
|
||||
sys_oserr_entry 7, "File not output"
|
||||
sys_oserr_entry 8, "Filename missing"
|
||||
sys_oserr_entry 9, "Ilegal device"
|
||||
sys_oserr_entry 9, "Illegal device"
|
||||
sys_oserr_entry 20, "Read error"
|
||||
sys_oserr_entry 21, "Read error"
|
||||
sys_oserr_entry 22, "Read error"
|
||||
|
@ -40,7 +40,7 @@ ErrTab:
|
||||
.byte 6, EINVAL ; File not input
|
||||
.byte 7, EINVAL ; File not output
|
||||
.byte 8, EINVAL ; Filename missing
|
||||
.byte 9, ENODEV ; Ilegal device
|
||||
.byte 9, ENODEV ; Illegal device
|
||||
; .byte 20, ; Read error
|
||||
; .byte 21, ; Read error
|
||||
; .byte 22, ; Read error
|
||||
|
@ -74,7 +74,7 @@ init: txa
|
||||
|
||||
; Return with error in A
|
||||
|
||||
err: lda #9 ; "Ilegal device"
|
||||
err: lda #9 ; "Illegal device"
|
||||
done: rts
|
||||
|
||||
.endproc
|
||||
@ -92,4 +92,4 @@ done: rts
|
||||
@L0: cmp #10
|
||||
rts
|
||||
|
||||
.endproc
|
||||
.endproc
|
||||
|
Loading…
Reference in New Issue
Block a user