annotate defs/errno.d @ 1630:7af4d12008f4

Updated ChangeLogs with slight formatting differences
author boisy
date Tue, 06 Jul 2004 15:08:24 +0000
parents c01a65c813ce
children 27e85b681dab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1626
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
2 ; errno
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
3 ;
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
4 ; $Id$
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
5 ;
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
6 ; Edt/Rev YYYY/MM/DD Modified by
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
7 ; Comment
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
8 ; ------------------------------------------------------------------
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
9 ; 2004/07/02 Boisy G. Pitre
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
10 ; Started
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
11
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
12 .title NitrOS-9 Error Definitions
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
13
1630
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
14 .ifndef Level
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
15 Level == 1
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
16 .endif
1626
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
17
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
18 ;
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
19 ; Basic09 Error Codes
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
20 ;
1630
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
21
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
22 E$UnkSym == 10 ; Unknown symbol
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
23 E$ExcVrb == 11 ; Excessive verbage
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
24 E$IllStC == 12 ; Illegal statement construction
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
25 E$ICOvf == 13 ; I-code overflow
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
26 E$IChRef == 14 ; Illegal channel reference
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
27 E$IllMod == 15 ; Illegal mode
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
28 E$IllNum == 16 ; Illegal number
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
29 E$IllPrf == 17 ; Illegal prefix
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
30 E$IllOpd == 18 ; Illegal operand
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
31 E$IllOpr == 19 ; Illegal operator
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
32 E$IllRFN == 20 ; Illegal record field name
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
33 E$IllDim == 21 ; Illegal dimension
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
34 E$IllLit == 22 ; Illegal literal
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
35 E$IllRet == 23 ; Illegal relational
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
36 E$IllSfx == 24 ; Illegal type suffix
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
37 E$DimLrg == 25 ; Dimension too large
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
38 E$LinLrg == 26 ; Line number too large
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
39 E$NoAssg == 27 ; Missing assignment statement
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
40 E$NoPath == 28 ; Missing path number
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
41 E$NoComa == 29 ; Missing coma
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
42 E$NoDim == 30 ; Missing dimension
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
43 E$NoDO == 31 ; Missing DO statement
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
44 E$MFull == 32 ; Memory full
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
45 E$NoGoto == 33 ; Missing GOTO
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
46 E$NoLPar == 34 ; Missing left parenthesis
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
47 E$NoLRef == 35 ; Missing line reference
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
48 E$NoOprd == 36 ; Missing operand
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
49 E$NoRPar == 36 ; Missing right parenthesis
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
50 E$NoTHEN == 38 ; Missing THEN statement
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
51 E$NoTO == 39 ; Missing TO statement
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
52 E$NoVRef == 40 ; Missing variable reference
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
53 E$EndQou == 41 ; Missing end quote
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
54 E$SubLrg == 42 ; Too many subscripts
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
55 E$UnkPrc == 43 ; Unknown procedure
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
56 E$MulPrc == 44 ; Multiply defined procedure
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
57 E$DivZer == 45 ; Divice by zero
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
58 E$TypMis == 46 ; Operand type mismatch
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
59 E$StrOvf == 46 ; String stack overflow
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
60 E$NoRout == 48 ; Unimplemented routine
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
61 E$UndVar == 49 ; Undefined variable
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
62 E$FltOvf == 50 ; Floating Overflow
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
63 E$LnComp == 51 ; Line with compiler error
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
64 E$ValRng == 52 ; Value out of range for destination
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
65 E$SubOvf == 53 ; Subroutine stack overflow
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
66 E$SubUnd == 54 ; Subroutine stack underflow
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
67 E$SubRng == 55 ; Subscript out of range
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
68 E$ParmEr == 56 ; Parameter error
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
69 E$SysOvf == 57 ; System stack overflow
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
70 E$IOMism == 58 ; I/O type mismatch
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
71 E$IONum == 59 ; I/O numeric input format bad
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
72 E$IOConv == 60 ; I/O conversion: number out of range
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
73 E$IllInp == 61 ; Illegal input format
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
74 E$IOFRpt == 62 ; I/O format repeat error
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
75 E$IOFSyn == 63 ; I/O format syntax error
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
76 E$IllPNm == 64 ; Illegal path number
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
77 E$WrSub == 65 ; Wrong number of subscripts
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
78 E$NonRcO == 66 ; Non-record type operand
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
79 E$IllA == 67 ; Illegal argument
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
80 E$IllCnt == 68 ; Illegal control structure
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
81 E$UnmCnt == 69 ; Unmatched control structure
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
82 E$IllFOR == 70 ; Illegal FOR variable
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
83 E$IllExp == 71 ; Illegal expression type
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
84 E$IllDec == 72 ; Illegal declarative statement
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
85 E$ArrOvf == 73 ; Array size overflow
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
86 E$UndLin == 74 ; Undefined line number
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
87 E$MltLin == 75 ; Multiply defined line number
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
88 E$MltVar == 76 ; Multiply defined variable
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
89 E$IllIVr == 77 ; Illegal input variable
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
90 E$SeekRg == 78 ; Seek out of range
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
91 E$NoData == 79 ; Missing data statement
1626
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
92
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
93 ;
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
94 ; System Dependent Error Codes
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
95 ;
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
96
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
97 ; Level 2 windowing error codes
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
98
1630
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
99 E$IWTyp == 183 ; Illegal window type
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
100 E$WADef == 184 ; Window already defined
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
101 E$NFont == 185 ; Font not found
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
102 E$StkOvf == 186 ; Stack overflow
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
103 E$IllArg == 187 ; Illegal argument
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
104 ; 188 is reserved
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
105 E$ICoord == 189 ; Illegal coordinates
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
106 E$Bug == 190 ; Bug (should never be returned)
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
107 E$BufSiz == 191 ; Buffer size is too small
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
108 E$IllCmd == 192 ; Illegal command
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
109 E$TblFul == 193 ; Screen or window table is full
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
110 E$BadBuf == 194 ; Bad/Undefined buffer number
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
111 E$IWDef == 195 ; Illegal window definition
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
112 E$WUndef == 196 ; Window undefined
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
113
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
114 E$Up == 197 ; Up arrow pressed on SCF I$ReadLn with PD.UP enabled
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
115 E$Dn == 198 ; Down arrow pressed on SCF I$ReadLn with PD.DOWN enabled
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
116 E$Alias == 199
1626
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
117
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
118
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
119 ;
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
120 ; Standard NitrOS-9 Error Codes
c01a65c813ce Definition files to use with as6809
boisy
parents:
diff changeset
121 ;
1630
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
122 E$PthFul == 200 ; Path Table full
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
123 E$BPNum == 201 ; Bad Path Number
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
124 E$Poll == 202 ; Polling Table Full
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
125 E$BMode == 203 ; Bad Mode
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
126 E$DevOvf == 204 ; Device Table Overflow
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
127 E$BMID == 205 ; Bad Module ID
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
128 E$DirFul == 206 ; Module Directory Full
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
129 E$MemFul == 207 ; Process Memory Full
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
130 E$UnkSvc == 208 ; Unknown Service Code
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
131 E$ModBsy == 209 ; Module Busy
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
132 E$BPAddr == 210 ; Bad Page Address
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
133 E$EOF == 211 ; End of File
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
134 E$NES == 213 ; Non-Existing Segment
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
135 E$FNA == 214 ; File Not Accesible
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
136 E$BPNam == 215 ; Bad Path Name
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
137 E$PNNF == 216 ; Path Name Not Found
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
138 E$SLF == 217 ; Segment List Full
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
139 E$CEF == 218 ; Creating Existing File
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
140 E$IBA == 219 ; Illegal Block Address
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
141 E$HangUp == 220 ; Carrier Detect Lost
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
142 E$MNF == 221 ; Module Not Found
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
143 E$DelSP == 223 ; Deleting Stack Pointer memory
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
144 E$IPrcID == 224 ; Illegal Process ID
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
145 E$BPrcID == E$IPrcID ; Bad Process ID (formerly #238)
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
146 ; 225 is reserved
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
147 E$NoChld == 226 ; No Children
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
148 E$ISWI == 227 ; Illegal SWI code
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
149 E$PrcAbt == 228 ; Process Aborted
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
150 E$PrcFul == 229 ; Process Table Full
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
151 E$IForkP == 230 ; Illegal Fork Parameter
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
152 E$KwnMod == 231 ; Known Module
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
153 E$BMCRC == 232 ; Bad Module CRC
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
154 E$USigP == 233 ; Unprocessed Signal Pending
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
155 E$NEMod == 234 ; Non Existing Module
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
156 E$BNam == 235 ; Bad Name
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
157 E$BMHP == 236 ; (bad module header parity)
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
158 E$NoRAM == 237 ; No (System) RAM Available
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
159 E$DNE == 238 ; Directory not empty
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
160 E$NoTask == 239 ; No available Task number
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
161 E$Unit == 240 ; Illegal Unit (drive)
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
162 E$Sect == 241 ; Bad Sector number
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
163 E$WP == 242 ; Write Protect
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
164 E$CRC == 243 ; Bad Check Sum
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
165 E$Read == 244 ; Read Error
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
166 E$Write == 245 ; Write Error
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
167 E$NotRdy == 246 ; Device Not Ready
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
168 E$Seek == 247 ; Seek Error
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
169 E$Full == 248 ; Media Full
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
170 E$BTyp == 249 ; Bad Type (incompatable) media
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
171 E$DevBsy == 250 ; Device Busy
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
172 E$DIDC == 251 ; Disk ID Change
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
173 E$Lock == 252 ; Record is busy (locked out)
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
174 E$Share == 253 ; Non-sharable file busy
7af4d12008f4 Updated ChangeLogs with slight formatting differences
boisy
parents: 1626
diff changeset
175 E$DeadLk == 254 ; I/O Deadlock error