mirror of
https://github.com/JetSetIlly/Gopher2600.git
synced 2025-04-02 11:02:17 -04:00
- debugger now handles CTRL-Z signals for terminal that have been put into raw mode; like the colorterm package - CTRL-C now asks for confirmation - added EXIT command as an alternative to QUIT o colorterm - CTRL-C clears input line if anything has been typed - input buffer checked for length before writing
83 lines
3.2 KiB
Go
83 lines
3.2 KiB
Go
package errors
|
|
|
|
var messages = map[Errno]string{
|
|
FatalError: "fatality: %s: %s",
|
|
|
|
// sentinals
|
|
UserInterrupt: "user interrupt", // sentinal
|
|
UserSuspend: "user suspend", // sentinal
|
|
ScriptEnd: "end of script (%s)", // sentinal
|
|
PowerOff: "emulated machine has been powered off", // sentinal
|
|
PeriphUnplugged: "controller unplugged from '%s'", // sentinal
|
|
TVOutOfSpec: "tv out of spec: %s", // sentinal
|
|
|
|
// program modes
|
|
PlayError: "error emulating vcs: %s",
|
|
DebuggerError: "error debugging vcs: %s",
|
|
FPSError: "error during fps profiling: %s",
|
|
DisasmError: "error during disassembly: %s",
|
|
|
|
// debugger
|
|
ParserError: "parser error: %s: %s (char %d)", // first placeholder is the command definition
|
|
ValidationError: "%s for %s",
|
|
InvalidTarget: "invalid target: %s",
|
|
CommandError: "%s",
|
|
TerminalError: "%s",
|
|
|
|
// script
|
|
ScriptFileError: "script error: %s",
|
|
ScriptFileUnavailable: "script error: cannot open script file (%s)",
|
|
ScriptRunError: "script error: use of '%s' is not allowed in scripts [%s::%d]",
|
|
ScriptScribeError: "script scribe error: %s",
|
|
|
|
// recorder
|
|
RecordingError: "controller recording error: %s",
|
|
PlaybackError: "controller playback error: %s",
|
|
PlaybackHashError: "controller playback error: hash error: %s",
|
|
|
|
// regression
|
|
RegressionDBError: "regression database error: %s",
|
|
RegressionFail: "regression fail: %s",
|
|
|
|
// symbols
|
|
SymbolsFileError: "symbols error: error processing symbols file: %s",
|
|
SymbolsFileUnavailable: "symbols error: no symbols file for %s",
|
|
SymbolUnknown: "symbols error: unrecognised symbol (%s)",
|
|
|
|
// vcs
|
|
VCSError: "error creating vcs: %s",
|
|
|
|
// cpu
|
|
UnimplementedInstruction: "cpu error: unimplemented instruction (%0#x) at (%#04x)",
|
|
InvalidOpcode: "cpu error: invalid opcode (%#04x)",
|
|
InvalidResult: "cpu error: %s: %s",
|
|
ProgramCounterCycled: "cpu error: program counter cycled back to 0x0000",
|
|
InvalidOperationMidInstruction: "cpu error: invalid operation mid-instruction (%s)",
|
|
|
|
// memory
|
|
MemoryError: "memory error: %s",
|
|
UnreadableAddress: "memory error: memory location is not readable (%#04x)",
|
|
UnwritableAddress: "memory error: memory location is not writable (%#04x)",
|
|
UnpokeableAddress: "memory error: cannot poke address (%v)",
|
|
UnrecognisedAddress: "memory error: address unrecognised (%v)",
|
|
|
|
// cartridges
|
|
CartridgeFileError: "cartridge error: %s",
|
|
CartridgeFileUnavailable: "cartridge error: cannot open cartridge file (%s)",
|
|
CartridgeError: "cartridge error: %s",
|
|
CartridgeEjected: "cartridge error: no cartridge attached",
|
|
|
|
// peripherals
|
|
PeriphHardwareUnavailable: "peripheral error: controller hardware unavailable (%s)",
|
|
UnknownPeriphEvent: "periperal error: %s: unsupported event (%v)",
|
|
|
|
// tv
|
|
UnknownTVRequest: "tv error: unsupported request (%v)",
|
|
BasicTelevision: "tv error: BasicTelevision: %s",
|
|
ImageTV: "tv error: ImageTV: %s",
|
|
DigestTV: "tv error: DigestTV: %s",
|
|
|
|
// gui
|
|
UnknownGUIRequest: "gui error: unsupported request (%v)",
|
|
SDL: "gui error: SDL: %s",
|
|
}
|