Mercurial > hg > Members > kono > nitros9-code
changeset 106:1db3e85d5133
SYS files for Level 1
author | boisy |
---|---|
date | Sat, 06 Jul 2002 15:27:58 +0000 |
parents | 1e235d56f59a |
children | 5eceecf6159c |
files | level1/sys/errmsg level1/sys/makefile level1/sys/motd level1/sys/password |
diffstat | 4 files changed, 149 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/level1/sys/errmsg Sat Jul 06 15:27:58 2002 +0000 @@ -0,0 +1,126 @@ +200 - Path Table Full +201 - Illegal Path Number +202 - Interrupt Polling Table Full +203 - Illegal Mode +204 - Device Table Full +205 - Illegal Module Header +206 - Module Directory Full +207 - Memory Full +208 - Illegal Service Request +209 - Module Busy +210 - Boundary Error +211 - End of File +212 - Returning non-allocated memory +213 - Non-existing Segment +214 - No Permission +215 - Bad Path Name +216 - Path Name Not Found +217 - Segment List Full +218 - File Already Exists +219 - Illegal Block Address +220 - Phone Hangup-Data Carrier Detect lost +221 - Module Not Found +223 - Suicide Attempt +224 - Illegal Process Number +226 - No Children +227 - Illegal SWI Code +228 - Process Aborted +229 - Process Table Full +230 - Illegal Parameter Area +231 - Known module +232 - Incorrect Module CRC +233 - Signal Error +234 - Non-existent Module +235 - Bad Name +237 - RAM Full +238 - Unknown Process ID +239 - No task number available +240 - Unit Error +241 - Sector Error +242 - Write Protect +243 - CRC Error +244 - Read Error +245 - Write Error +246 - Not Ready +247 - Seek Error +248 - Media Full +249 - Wrong Type +250 - Device Busy +251 - Disk ID Change +252 - Record is locked-out +253 - Non-sharable file busy +1 - Unconditional Abort +2 - Keyboard Abort +3 - Keyboard Interrupt +10 -- Unrecognized Symbol +11 -- Excessive Verbage +12 -- Illegal Statement Construction +13 -- I-code Overflow +14 -- Illegal Channel Reference +15 -- Illegal Mode (read/write/update) +16 -- Illegal Number +17 -- Illegal Prefix +18 -- Illegal Operand +19 -- Illegal Operator +20 -- Illegal Record Field Name +21 -- Illegal Dimension +22 -- Illegal Literal +23 -- Illegal Relational +24 -- Illegal Type Suffix +25 -- Too-large Dimension +26 -- Too-large Line Number +27 -- Missing Assignment Statement +28 -- Missing Path Number +29 -- Missing Comma +30 -- Missing Dimension +31 -- Missing DO Statement +32 -- Memory Full +33 -- Missing GOTO +34 -- Missing Left Parenthesis +35 -- Missing Line Reference +36 -- Missing Operand +37 -- Missing Right Parenthesis +38 -- Missing THEN statement +39 -- Missing TO +40 -- Missing Variable Reference +41 -- No Ending Quote +42 -- Too Many Subscripts +43 -- Unknown Procedure +44 -- Multiply-defined Procedure +45 -- Divide by Zero +46 -- Operand Type Mismatch +47 -- String Stack Overflow +48 -- Unimplemented Routine +49 -- Undefined Variable +50 -- Floating Overflow +51 -- Line with Compiler Error +52 -- Value out of Range for Destination +53 -- Subroutine Stack Overflow +54 -- Subroutine Stack Underflow +55 -- Subscript out of Range +56 -- Parameter Error +57 -- System Stack Overflow +58 -- I/O Type Mismatch +59 -- I/O Numeric Input Format Bad +60 -- I/O Conversion: Number out of Range +61 -- Illegal Input Format +62 -- I/O Format Repeat Error +63 -- I/O Format Syntax Error +64 -- Illegal Path Number +65 -- Wrong Number of Subscripts +66 -- Non-record-type Operand +67 -- Illegal Argument +68 -- Illegal Control Structure +69 -- Unmatched Control Structure +70 -- Illegal FOR Variable +71 -- Illegal Expression Type +72 -- Illegal Declarative Statement +73 -- Array Size Overflow +74 -- Undefined Line Number +75 -- Multiply-defined Line Number +76 -- Multiply-defined Variable +77 -- Illegal Input Variable +78 -- Seek Out of Range +78 -- Seek Out of Range +79 -- Missing Data Statement +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/level1/sys/makefile Sat Jul 06 15:27:58 2002 +0000 @@ -0,0 +1,15 @@ +include ../../Makefile.rules + +DEPENDS = ./Makefile + +DEFS = errmsg motd password +ALLOBJS = $(DEFS) + +all: $(ALLOBJS) + $(UNIX2OS9) $(ALLOBJS) + +clean: + $(OS92UNIX) $(ALLOBJS) + +showobjs: + @echo $(ALLOBJS)