diff options
Diffstat (limited to 'src/arch/mips/system.hh')
-rw-r--r-- | src/arch/mips/system.hh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/arch/mips/system.hh b/src/arch/mips/system.hh index eb28b3b2f..c48faa1ba 100644 --- a/src/arch/mips/system.hh +++ b/src/arch/mips/system.hh @@ -66,22 +66,9 @@ class MipsSystem : public System /** Object pointer for the console code */ ObjectFile *console; -#ifndef NDEBUG - /** Event to halt the simulator if the console calls panic() */ - BreakPCEvent *consolePanicEvent; -#endif - protected: const Params *params() const { return (const Params *)_params; } - /** Add a function-based event to the console code. */ - template <class T> - T * - addConsoleFuncEvent(const char *lbl) - { - return addFuncEvent<T>(consoleSymtab, lbl); - } - virtual Addr fixFuncEventAddr(Addr addr); }; |