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