mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
b8e65aca5a
Added more codes and messages.
90 lines
3.6 KiB
ArmAsm
90 lines
3.6 KiB
ArmAsm
;
|
|
; 2002-07-18, Ullrich von Bassewitz
|
|
; 2014-05-28, Greg King
|
|
;
|
|
; Defines the platform-specific error list.
|
|
;
|
|
; The table is built as a list of entries:
|
|
;
|
|
; .byte entrylen
|
|
; .byte errorcode
|
|
; .asciiz errormsg
|
|
;
|
|
; and, terminated by an entry with length zero that is returned if the
|
|
; error code could not be found.
|
|
;
|
|
|
|
.export __sys_oserrlist
|
|
|
|
;----------------------------------------------------------------------------
|
|
; Macros used to generate the list (may get moved to an include file?)
|
|
|
|
; Regular entry
|
|
.macro sys_oserr_entry code, msg
|
|
.local Start, End
|
|
Start: .byte End - Start
|
|
.byte code
|
|
.asciiz msg
|
|
End:
|
|
.endmacro
|
|
|
|
; Sentinel entry
|
|
.macro sys_oserr_sentinel msg
|
|
.byte 0 ; Length is always zero
|
|
.byte 0 ; Code is unused
|
|
.asciiz msg
|
|
.endmacro
|
|
|
|
;----------------------------------------------------------------------------
|
|
; The error message table
|
|
|
|
.rodata
|
|
|
|
__sys_oserrlist:
|
|
sys_oserr_entry 1, "Too many open files"
|
|
sys_oserr_entry 2, "File is open"
|
|
sys_oserr_entry 3, "File not open"
|
|
sys_oserr_entry 4, "File not found"
|
|
sys_oserr_entry 5, "Device not present"
|
|
sys_oserr_entry 6, "File not input"
|
|
sys_oserr_entry 7, "File not output"
|
|
sys_oserr_entry 8, "Filename missing"
|
|
sys_oserr_entry 9, "Illegal device"
|
|
sys_oserr_entry 20, "Read error (No sector header)"
|
|
sys_oserr_entry 21, "Read error (No sync mark)"
|
|
sys_oserr_entry 22, "Read error (No sector data)"
|
|
sys_oserr_entry 23, "Read error (Bad data checksum)"
|
|
sys_oserr_entry 24, "Read error (Decoding problem)"
|
|
sys_oserr_entry 25, "Write error (Verify failed)"
|
|
sys_oserr_entry 26, "Write protected"
|
|
sys_oserr_entry 27, "Read error (Bad header checksum)"
|
|
sys_oserr_entry 28, "Write error (overrun)"
|
|
sys_oserr_entry 29, "Disk ID mismatch"
|
|
sys_oserr_entry 30, "Syntax error (Command not recognized)"
|
|
sys_oserr_entry 31, "Syntax error (Command not implemented)"
|
|
sys_oserr_entry 32, "Syntax error (Command too long)"
|
|
sys_oserr_entry 33, "Syntax error (Invalid write filename)"
|
|
sys_oserr_entry 34, "Syntax error (No file given)"
|
|
sys_oserr_entry 39, "System file not found"
|
|
sys_oserr_entry 49, "Invalid format"
|
|
sys_oserr_entry 50, "Record not present"
|
|
sys_oserr_entry 51, "Overflow in record"
|
|
sys_oserr_entry 52, "File too large"
|
|
sys_oserr_entry 60, "Write file open"
|
|
sys_oserr_entry 61, "File not open"
|
|
sys_oserr_entry 62, "File not found"
|
|
sys_oserr_entry 63, "File exists"
|
|
sys_oserr_entry 64, "File type mismatch"
|
|
sys_oserr_entry 65, "No block"
|
|
sys_oserr_entry 66, "Illegal track or sector"
|
|
sys_oserr_entry 67, "Illegal system track or sector"
|
|
sys_oserr_entry 70, "No channel"
|
|
sys_oserr_entry 71, "BAM error"
|
|
sys_oserr_entry 72, "Disk full"
|
|
sys_oserr_entry 73, "DOS version mismatch"
|
|
sys_oserr_entry 74, "Drive not ready"
|
|
sys_oserr_entry 75, "Format error"
|
|
sys_oserr_entry 77, "Illegal partition"
|
|
sys_oserr_entry 78, "Bad system area"
|
|
sys_oserr_sentinel "Unknown error"
|