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

Fixed typo (Ilegal).

This commit is contained in:
Greg King 2014-04-03 17:28:36 -04:00
parent b92630142f
commit 449fceebdd
4 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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"

View File

@ -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

View File

@ -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