Used longer error text.

Added more codes and messages.
This commit is contained in:
Greg King
2014-05-28 23:01:48 -04:00
parent 3e9484632e
commit b8e65aca5a
2 changed files with 27 additions and 19 deletions

View File

@@ -1,6 +1,6 @@
;
; 2002-07-18, Ullrich von Bassewitz
; 2014-05-26, Greg King
; 2014-05-28, Greg King
;
; Defines the platform-specific error list.
;
@@ -50,22 +50,23 @@ __sys_oserrlist:
sys_oserr_entry 7, "File not output"
sys_oserr_entry 8, "Filename missing"
sys_oserr_entry 9, "Illegal device"
sys_oserr_entry 20, "No sector header"
sys_oserr_entry 21, "No sync mark"
sys_oserr_entry 22, "No sector data"
sys_oserr_entry 23, "Checksum error"
sys_oserr_entry 24, "Decode error"
sys_oserr_entry 25, "Verify error"
sys_oserr_entry 26, "Write protect on"
sys_oserr_entry 27, "Checksum error"
sys_oserr_entry 28, "Write overrun"
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, "Command not recognized"
sys_oserr_entry 31, "Command not implemented"
sys_oserr_entry 32, "Command too long"
sys_oserr_entry 33, "Invalid write filename"
sys_oserr_entry 34, "No file given"
sys_oserr_entry 39, "File not found"
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"
@@ -82,4 +83,7 @@ __sys_oserrlist:
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"