SCP: Add missing new entry in the scp_errors array
This commit is contained in:
parent
eb242da79e
commit
d0de8b807f
1 changed files with 52 additions and 51 deletions
103
scp.c
103
scp.c
|
@ -754,57 +754,58 @@ const struct scp_error {
|
|||
const char *code;
|
||||
const char *message;
|
||||
} scp_errors[1+SCPE_MAX_ERR-SCPE_BASE] =
|
||||
{{"NXM", "Address space exceeded"},
|
||||
{"UNATT", "Unit not attached"},
|
||||
{"IOERR", "I/O error"},
|
||||
{"CSUM", "Checksum error"},
|
||||
{"FMT", "Format error"},
|
||||
{"NOATT", "Unit not attachable"},
|
||||
{"OPENERR", "File open error"},
|
||||
{"MEM", "Memory exhausted"},
|
||||
{"ARG", "Invalid argument"},
|
||||
{"STEP", "Step expired"},
|
||||
{"UNK", "Unknown command"},
|
||||
{"RO", "Read only argument"},
|
||||
{"INCOMP", "Command not completed"},
|
||||
{"STOP", "Simulation stopped"},
|
||||
{"EXIT", "Goodbye"},
|
||||
{"TTIERR", "Console input I/O error"},
|
||||
{"TTOERR", "Console output I/O error"},
|
||||
{"EOF", "End of file"},
|
||||
{"REL", "Relocation error"},
|
||||
{"NOPARAM", "No settable parameters"},
|
||||
{"ALATT", "Unit already attached"},
|
||||
{"TIMER", "Hardware timer error"},
|
||||
{"SIGERR", "Signal handler setup error"},
|
||||
{"TTYERR", "Console terminal setup error"},
|
||||
{"SUB", "Subscript out of range"},
|
||||
{"NOFNC", "Command not allowed"},
|
||||
{"UDIS", "Unit disabled"},
|
||||
{"NORO", "Read only operation not allowed"},
|
||||
{"INVSW", "Invalid switch"},
|
||||
{"MISVAL", "Missing value"},
|
||||
{"2FARG", "Too few arguments"},
|
||||
{"2MARG", "Too many arguments"},
|
||||
{"NXDEV", "Non-existent device"},
|
||||
{"NXUN", "Non-existent unit"},
|
||||
{"NXREG", "Non-existent register"},
|
||||
{"NXPAR", "Non-existent parameter"},
|
||||
{"NEST", "Nested DO command limit exceeded"},
|
||||
{"IERR", "Internal error"},
|
||||
{"MTRLNT", "Invalid magtape record length"},
|
||||
{"LOST", "Console Telnet connection lost"},
|
||||
{"TTMO", "Console Telnet connection timed out"},
|
||||
{"STALL", "Console Telnet output stall"},
|
||||
{"AFAIL", "Assertion failed"},
|
||||
{"INVREM", "Invalid remote console command"},
|
||||
{"EXPECT", "Expect matched"},
|
||||
{"AMBREG", "Ambiguous register name"},
|
||||
{"REMOTE", "remote console command"},
|
||||
{"INVEXPR", "invalid expression"},
|
||||
{"SIGTERM", "SIGTERM received"},
|
||||
{"FSSIZE", "File System size larger than disk size"},
|
||||
{"RUNTIME", "Run time limit exhausted"},
|
||||
{{"NXM", "Address space exceeded"},
|
||||
{"UNATT", "Unit not attached"},
|
||||
{"IOERR", "I/O error"},
|
||||
{"CSUM", "Checksum error"},
|
||||
{"FMT", "Format error"},
|
||||
{"NOATT", "Unit not attachable"},
|
||||
{"OPENERR", "File open error"},
|
||||
{"MEM", "Memory exhausted"},
|
||||
{"ARG", "Invalid argument"},
|
||||
{"STEP", "Step expired"},
|
||||
{"UNK", "Unknown command"},
|
||||
{"RO", "Read only argument"},
|
||||
{"INCOMP", "Command not completed"},
|
||||
{"STOP", "Simulation stopped"},
|
||||
{"EXIT", "Goodbye"},
|
||||
{"TTIERR", "Console input I/O error"},
|
||||
{"TTOERR", "Console output I/O error"},
|
||||
{"EOF", "End of file"},
|
||||
{"REL", "Relocation error"},
|
||||
{"NOPARAM", "No settable parameters"},
|
||||
{"ALATT", "Unit already attached"},
|
||||
{"TIMER", "Hardware timer error"},
|
||||
{"SIGERR", "Signal handler setup error"},
|
||||
{"TTYERR", "Console terminal setup error"},
|
||||
{"SUB", "Subscript out of range"},
|
||||
{"NOFNC", "Command not allowed"},
|
||||
{"UDIS", "Unit disabled"},
|
||||
{"NORO", "Read only operation not allowed"},
|
||||
{"INVSW", "Invalid switch"},
|
||||
{"MISVAL", "Missing value"},
|
||||
{"2FARG", "Too few arguments"},
|
||||
{"2MARG", "Too many arguments"},
|
||||
{"NXDEV", "Non-existent device"},
|
||||
{"NXUN", "Non-existent unit"},
|
||||
{"NXREG", "Non-existent register"},
|
||||
{"NXPAR", "Non-existent parameter"},
|
||||
{"NEST", "Nested DO command limit exceeded"},
|
||||
{"IERR", "Internal error"},
|
||||
{"MTRLNT", "Invalid magtape record length"},
|
||||
{"LOST", "Console Telnet connection lost"},
|
||||
{"TTMO", "Console Telnet connection timed out"},
|
||||
{"STALL", "Console Telnet output stall"},
|
||||
{"AFAIL", "Assertion failed"},
|
||||
{"INVREM", "Invalid remote console command"},
|
||||
{"EXPECT", "Expect matched"},
|
||||
{"AMBREG", "Ambiguous register name"},
|
||||
{"REMOTE", "remote console command"},
|
||||
{"INVEXPR", "invalid expression"},
|
||||
{"SIGTERM", "SIGTERM received"},
|
||||
{"FSSIZE", "File System size larger than disk size"},
|
||||
{"RUNTIME", "Run time limit exhausted"},
|
||||
{"INCOMPVHD", "Incompatible VHD Container"},
|
||||
};
|
||||
|
||||
const size_t size_map[] = { sizeof (int8),
|
||||
|
|
Loading…
Add table
Reference in a new issue