summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/mips/r4000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/mips/r4000.cpp')
-rw-r--r--src/devices/cpu/mips/r4000.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/cpu/mips/r4000.cpp b/src/devices/cpu/mips/r4000.cpp
index 7e6ad52f5a0..15f05740430 100644
--- a/src/devices/cpu/mips/r4000.cpp
+++ b/src/devices/cpu/mips/r4000.cpp
@@ -40,7 +40,7 @@
#define LOG_SYSCALL (1U << 4)
#define LOG_STATS (1U << 5)
-#define VERBOSE (LOG_GENERAL)
+#define VERBOSE (LOG_GENERAL|LOG_TLB|LOG_EXCEPTION)
// operating system specific system call logging
#define SYSCALL_IRIX53 (1U << 0)
@@ -304,6 +304,7 @@ void r4000_base_device::execute_run()
void r4000_base_device::execute_set_input(int inputnum, int state)
{
+ logerror("interrupt %d state %d\n", inputnum, state);
if (state)
m_cp0[CP0_Cause] |= (CAUSE_IPEX0 << inputnum);
else