From d0de8b807f59bbf181d970c19a53d1829082fab9 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sat, 4 Apr 2020 09:13:22 -0700 Subject: [PATCH] SCP: Add missing new entry in the scp_errors array --- scp.c | 103 +++++++++++++++++++++++++++++----------------------------- 1 file changed, 52 insertions(+), 51 deletions(-) diff --git a/scp.c b/scp.c index ad3525dd..f84f36d5 100644 --- a/scp.c +++ b/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),