From cbd272057de3044a44d2bf10f29bd136db27573a Mon Sep 17 00:00:00 2001 From: Patrick Mackinlay Date: Thu, 15 Aug 2019 19:03:11 +0700 Subject: [PATCH] r4000: revert unwanted change (nw) --- src/devices/cpu/mips/r4000.cpp | 3 +-- 1 file changed, 1 insertion(+), 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