summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Patrick Mackinlay <pmackinlay@hotmail.com>2019-08-15 19:03:11 +0700
committer Patrick Mackinlay <pmackinlay@hotmail.com>2019-08-15 19:03:11 +0700
commitcbd272057de3044a44d2bf10f29bd136db27573a (patch)
tree6886a8552f87b1270987210782edf44a5a009c3e /src
parent99648b1223cc86e8baf6f9193f9dd065e9671698 (diff)
r4000: revert unwanted change (nw)
Diffstat (limited to 'src')
-rw-r--r--src/devices/cpu/mips/r4000.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/cpu/mips/r4000.cpp b/src/devices/cpu/mips/r4000.cpp
index 15f05740430..7e6ad52f5a0 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|LOG_TLB|LOG_EXCEPTION)
+#define VERBOSE (LOG_GENERAL)
// operating system specific system call logging
#define SYSCALL_IRIX53 (1U << 0)
@@ -304,7 +304,6 @@ 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