diff options
Diffstat (limited to 'v4.0/src/CMD/COMMAND/COMMAND.SKL')
| -rw-r--r-- | v4.0/src/CMD/COMMAND/COMMAND.SKL | 213 |
1 files changed, 213 insertions, 0 deletions
diff --git a/v4.0/src/CMD/COMMAND/COMMAND.SKL b/v4.0/src/CMD/COMMAND/COMMAND.SKL new file mode 100644 index 0000000..44b1eef --- /dev/null +++ b/v4.0/src/CMD/COMMAND/COMMAND.SKL | |||
| @@ -0,0 +1,213 @@ | |||
| 1 | |||
| 2 | ;************************* | ||
| 3 | ;* MESSAGE SKELETON FILE * | ||
| 4 | ;************************* | ||
| 5 | |||
| 6 | :util COMMAND ;AC000; | ||
| 7 | |||
| 8 | :class 1 ;AC000; Transient extended errors | ||
| 9 | |||
| 10 | :use EXTEND2 ;AC000; "File not found" | ||
| 11 | :use EXTEND3 ;AC000; "Path not found" | ||
| 12 | :use EXTEND8 ;AC000; "Insufficient memory" | ||
| 13 | |||
| 14 | :class 2 ;AC000; Transient parse errors | ||
| 15 | |||
| 16 | :class 3 ;AC000; Resident extended errors | ||
| 17 | :use -1 EXTEND999 ;AN000; "Extended error #" | ||
| 18 | |||
| 19 | :class 4 ;AC000; Resident parse errors | ||
| 20 | :use -1 PARSE999 ;AN000; "Parse error #" | ||
| 21 | |||
| 22 | :class A ;AC000; resident messages | ||
| 23 | |||
| 24 | :use 220 COMMON17 ;AC000; "File allocation table bad, drive %1" | ||
| 25 | :use 223 COMMON28 ;AC000; "Press any key to continue" | ||
| 26 | :def 201 "A" ;AC000; | ||
| 27 | :def 202 "R" ;AC000; | ||
| 28 | :def 203 "I" ;AC000; | ||
| 29 | :def 204 "F" ;AC000; | ||
| 30 | :def 205 "Y" ;AC000; | ||
| 31 | :def 206 "N" ;AC000; | ||
| 32 | :def 210 "Abort" ;AC000; | ||
| 33 | :def 211 ", Retry" ;AC000; | ||
| 34 | :def 212 ", Ignore" ;AC000; | ||
| 35 | :def 213 ", Fail" ;AC000; | ||
| 36 | :def 214 "?" ;AC000; | ||
| 37 | :def 215 "reading",0 ;AC000; | ||
| 38 | :def 216 "writing",0 ;AC000; | ||
| 39 | :def 217 " %1 drive %2",CR,LF ;AC000; | ||
| 40 | :def 218 " %1 device %2",CR,LF ;AC000; | ||
| 41 | :def 219 "Please insert volume %1 serial %2-%3",CR,LF ;AC009; | ||
| 42 | :def 221 "Invalid COMMAND.COM",CR,LF ;AC000; | ||
| 43 | :def 222 "Insert disk with %1 in drive %2",CR,LF ;AC000; | ||
| 44 | :def 224 CR,LF,"Terminate batch job (Y/N)?" ;AC000; | ||
| 45 | :def 225 "Cannot execute %1",CR,LF ;AC000; | ||
| 46 | :def 226 "Error in EXE file",CR,LF ;AC000; | ||
| 47 | :def 227 "Program too big to fit in memory",CR,LF ;AC000; | ||
| 48 | :def 228 CR,LF,"No free file handles" ;AC000; | ||
| 49 | :def 229 "Bad Command or file name",CR,LF ;AC000; | ||
| 50 | :use 230 EXTEND5 ;AC000; | ||
| 51 | :def 231 CR,LF,"Memory allocation error" ;AC000; | ||
| 52 | :def 232 CR,LF,"Cannot load COMMAND, system halted",CR,LF;AC000; | ||
| 53 | :def 233 CR,LF,"Cannot start COMMAND, exiting",CR,LF ;AC000; | ||
| 54 | :def 234 CR,LF,"Top level process aborted, cannot continue",CR,LF;AC000; | ||
| 55 | :def 235 CR,LF ;AC000; | ||
| 56 | |||
| 57 | |||
| 58 | :class B ;AC000; Initialization messages | ||
| 59 | |||
| 60 | :use 461 COMMON1 ;AC000; "Incorrect DOS version" | ||
| 61 | :def 463 "Out of environment space",CR,LF ;AC000; | ||
| 62 | :def 464 CR,LF,CR,LF,"MS DOS ",CR,LF | ||
| 63 | "Version 4.00 (C)Copyright International Business Machines Corp 1981,1988",CR,LF | ||
| 64 | " (C)Copyright Microsoft Corp 1981, 1988",CR,LF ;AC000; | ||
| 65 | :def 465 "Specified COMMAND search directory bad",CR,LF ;AC025; | ||
| 66 | :def 466 "Specified COMMAND search directory bad access denied",CR,LF ;AC025; | ||
| 67 | |||
| 68 | :class C ;AC000; Parse messages | ||
| 69 | |||
| 70 | :use PARSE1 ;AC000; "Too many parameters" | ||
| 71 | :use PARSE2 ;AC000; "Required parameter missing" | ||
| 72 | :use PARSE3 ;AC000; "Invalid switch" | ||
| 73 | :use PARSE4 ;AC000; "Invalid keyword" | ||
| 74 | :use PARSE6 ;AC000; "Parameter value not in allowed range" | ||
| 75 | :use PARSE7 ;AC000; "Parameter value not allowed" | ||
| 76 | :use PARSE8 ;AC000; "Parameter value not allowed" | ||
| 77 | :use PARSE9 ;AC000; "Parameter format not correct" | ||
| 78 | :use PARSE10 ;AC000; "Invalid parameter" | ||
| 79 | :use PARSE11 ;AC000; "Invalid parameter combination" | ||
| 80 | |||
| 81 | :class D ;AC000; Extended errors - critical | ||
| 82 | |||
| 83 | :use EXTEND19 ;AC000; "Write protect" | ||
| 84 | :use EXTEND20 ;AC000; "Invalid unit" | ||
| 85 | :use EXTEND21 ;AC000; "Drive not ready" | ||
| 86 | :use EXTEND22 ;AC000; "Invalid device request" | ||
| 87 | :use EXTEND23 ;AC000; "Data error" | ||
| 88 | :use EXTEND24 ;AC000; "Invalid device request parameters" | ||
| 89 | :use EXTEND25 ;AC000; "Seek error" | ||
| 90 | :use EXTEND26 ;AC000; "Invalid media type" | ||
| 91 | :use EXTEND27 ;AC000; "Sector not found" | ||
| 92 | :use EXTEND28 ;AC000; "Printer out of paper" | ||
| 93 | :use EXTEND29 ;AC000; "Write fault error" | ||
| 94 | :use EXTEND30 ;AC000; "Read fault error" | ||
| 95 | :use EXTEND31 ;AC000; "General Failure" | ||
| 96 | :use EXTEND32 ;AC000; "Sharing Violation" | ||
| 97 | :use EXTEND33 ;AC000; "Lock Violation" | ||
| 98 | :use EXTEND34 ;AC000; "Invalid Disk Change" | ||
| 99 | :use EXTEND35 ;AC000; "FCB unavailable" | ||
| 100 | :use EXTEND36 ;AC000; "System resource exhausted" | ||
| 101 | :use EXTEND37 ;AC000; "Code page mismatch" | ||
| 102 | :use EXTEND38 ;AC026; "Out of input" | ||
| 103 | :use EXTEND39 ;AC026; "Insufficient disk space" | ||
| 104 | |||
| 105 | :class E ;AC000; extended errors | ||
| 106 | |||
| 107 | :use EXTEND1 ;AC000; "Invalid Function" | ||
| 108 | :use EXTEND2 ;AC000; "File not found" | ||
| 109 | :use EXTEND3 ;AC000; "Path not found" | ||
| 110 | :use EXTEND4 ;AC000; "Too many open files" | ||
| 111 | :use EXTEND5 ;AC000; "Access denied" | ||
| 112 | :use EXTEND6 ;AC000; "Invalid handle" | ||
| 113 | :use EXTEND7 ;AC000; "Memory control blocks destroyed" | ||
| 114 | :use EXTEND8 ;AC000; "Insufficient memory" | ||
| 115 | :use EXTEND9 ;AC000; "Invalid memory block address" | ||
| 116 | :use EXTEND10 ;AC000; "Invalid Environment" | ||
| 117 | :use EXTEND11 ;AC000; "Invalid format" | ||
| 118 | :use EXTEND12 ;AC000; "Invalid function parameter" | ||
| 119 | :use EXTEND13 ;AC000; "Invalid data" | ||
| 120 | :use EXTEND15 ;AC000; "Invalid drive specification" | ||
| 121 | :use EXTEND16 ;AC000; "Attempt to remove current directory" | ||
| 122 | :use EXTEND17 ;AC000; "Not same device" | ||
| 123 | :use EXTEND18 ;AC000; "No more files" | ||
| 124 | :use EXTEND80 ;AC000; "File already exists" | ||
| 125 | :use EXTEND82 ;AC000; "Can not make directory entry" | ||
| 126 | :use EXTEND83 ;AC000; "Fail requested to Critical Error" | ||
| 127 | :use EXTEND84 ;AC000; "Too many attaches" | ||
| 128 | :use EXTEND85 ;AC000; "Device or file already attached" | ||
| 129 | :use EXTEND86 ;AC000; "Invalid password" | ||
| 130 | :use EXTEND87 ;AC000; "Invalid parameter" | ||
| 131 | :use EXTEND88 ;AC000; "File system data fault" | ||
| 132 | :use EXTEND89 ;AC000; "Function not supported by file system" | ||
| 133 | :use EXTEND90 ;AC000; | ||
| 134 | |||
| 135 | |||
| 136 | :class F ;AC000; Transient messages | ||
| 137 | |||
| 138 | :use 1020 COMMON4 ;AC000; "%1 bytes free",CR,LF | ||
| 139 | :use 1015 COMMON18 ;AC000; "File cannot be copied onto itself",CR,LF | ||
| 140 | :use 1004 COMMON20 ;AC000; "Insufficient disk space",CR,LF | ||
| 141 | :use 1026 COMMON22 ;AC000; "Invalid code page",CR,LF | ||
| 142 | :use 1031 COMMON23 ;AC000; "Invalid date" | ||
| 143 | :use 1035 COMMON24 ;AC000; "Invalid time" | ||
| 144 | :use 1062 COMMON25 ;AC000; "Invalid path" | ||
| 145 | :use 1028 COMMON28 ;AC000; "Press any key to continue" | ||
| 146 | :use 1045 COMMON32 ;AC000; "Unable to create directory",CR,LF | ||
| 147 | :use 1041 COMMON33 ;AC000; "Volume in drive %1 has no label" | ||
| 148 | :use 1042 COMMON34 ;AC000; "Volume in drive %1 is %2" | ||
| 149 | :use 1043 COMMON36 ;AC000; "Volume Serial Number is %1" | ||
| 150 | :def 1002 "Duplicate file name or file not found",CR,LF ;AC000; | ||
| 151 | :def 1003 "Invalid path or file name",CR,LF ;AC000; | ||
| 152 | :def 1007 "Out of environment space",CR,LF ;AC000; | ||
| 153 | :def 1008 "File creation error",CR,LF ;AC000; | ||
| 154 | :def 1009 "Batch file missing",CR,LF ;AC000; | ||
| 155 | :def 1010 CR,LF,"Insert disk with batch file",CR,LF ;AC000; | ||
| 156 | :def 1011 "Bad command or file name",CR,LF ;AC000; | ||
| 157 | :use 1014 EXTEND5 ;AC000; | ||
| 158 | :def 1016 "Content of destination lost before copy",CR,LF ;AC000; | ||
| 159 | :def 1017 "Invalid filename or file not found",CR,LF ;AC000; | ||
| 160 | :def 1018 "%1 File(s) copied",CR,LF ;AC000; | ||
| 161 | :def 1019 "%1 File(s) " ;AC000; | ||
| 162 | :use 1021 EXTEND15 ;AC000; | ||
| 163 | :def 1022 "Code page %1 not prepared for system",CR,LF ;AC000; | ||
| 164 | :def 1023 "Code page %1 not prepared for all devices",CR,LF ;AC000; | ||
| 165 | :def 1024 "Active code page: %1",CR,LF ;AC000; | ||
| 166 | :def 1025 "NLSFUNC not installed",CR,LF ;AC000; | ||
| 167 | :def 1027 "Current drive is no longer valid" ;AC000; | ||
| 168 | :def 1029 "Label not found",CR,LF ;AC000; | ||
| 169 | :def 1030 "Syntax error",CR,LF ;AC000; | ||
| 170 | :def 1032 "Current date is %1 %2",CR,LF ;AC000; | ||
| 171 | :def 1033 "SunMonTueWedThuFriSat" ;AC000; | ||
| 172 | :def 1034 "Enter new date (%1): " ;AC031; | ||
| 173 | :def 1036 "Current time is %1",CR,LF ;AC000; | ||
| 174 | :def 1037 "Enter new time: " ;AC031; | ||
| 175 | :def 1038 ", Delete (Y/N)?" ;AC000; | ||
| 176 | :def 1039 "All files in directory will be deleted!",CR,LF | ||
| 177 | "Are you sure (Y/N)?" ;AC000; | ||
| 178 | :def 1040 "Microsoft DOS Version %1.%2",CR,LF ;AC000; | ||
| 179 | :def 1044 "Invalid directory",CR,LF ;AC000; | ||
| 180 | :def 1046 "Invalid path, not directory,",CR,LF,"or directory not empty",CR,LF ;AC000; | ||
| 181 | :def 1047 "Must specify ON or OFF",CR,LF ;AC000; | ||
| 182 | :def 1048 "Directory of %1",CR,LF ;AC000; | ||
| 183 | :def 1049 "No Path",CR,LF ;AC000; | ||
| 184 | :def 1050 "Invalid drive in search path",CR,LF ;AC000; | ||
| 185 | :def 1051 "Invalid device",CR,LF ;AC000; | ||
| 186 | :def 1052 "FOR cannot be nested",CR,LF ;AC000; | ||
| 187 | :def 1053 "Intermediate file error during pipe",CR,LF ;AC000; | ||
| 188 | :def 1054 "Cannot do binary reads from a device",CR,LF ;AC000; | ||
| 189 | :def 1055 "BREAK is %1",CR,LF ;AC000; | ||
| 190 | :def 1056 "VERIFY is %1",CR,LF ;AC000; | ||
| 191 | :def 1057 "ECHO is %1",CR,LF ;AC000; | ||
| 192 | :def 1059 "off",0 ;AC000; | ||
| 193 | :def 1060 "on",0 ;AC000; | ||
| 194 | :def 1061 "Error writing to device",CR,LF ;AC000; | ||
| 195 | :def 1063 "%1" ;AC000; | ||
| 196 | :def 1064 "%1" ;AC000; | ||
| 197 | :def 1065 "%1" ;AC000; | ||
| 198 | :def 1066 "%1" ;AC000; | ||
| 199 | :def 1067 9 ;AC000; | ||
| 200 | :def 1068 " <DIR> " ;AC000; | ||
| 201 | :def 1069 8," ",8 ;AC000; | ||
| 202 | :def 1070 CR,LF ;AC000; | ||
| 203 | :def 1071 "%1" ;AC000; | ||
| 204 | :def 1072 "mm-dd-yy" ;AC000; | ||
| 205 | :def 1073 "dd-mm-yy" ;AC000; | ||
| 206 | :def 1074 "yy-mm-dd" ;AC000; | ||
| 207 | :def 1075 "%1 %2" ;AC000; | ||
| 208 | :def 1076 "%1" ;AC000; | ||
| 209 | :def 1077 " %1 %2" ;AC053; | ||
| 210 | :def 1078 "Directory already exists",CR,LF ;AC000; | ||
| 211 | |||
| 212 | :end ;AC000; | ||
| 213 | |||