diff options
author | 2019-08-15 19:03:11 +0700 | |
---|---|---|
committer | 2019-08-15 19:03:11 +0700 | |
commit | cbd272057de3044a44d2bf10f29bd136db27573a (patch) | |
tree | 6886a8552f87b1270987210782edf44a5a009c3e /src/devices/cpu/mips/r4000.cpp | |
parent | 99648b1223cc86e8baf6f9193f9dd065e9671698 (diff) |
r4000: revert unwanted change (nw)
Diffstat (limited to 'src/devices/cpu/mips/r4000.cpp')
-rw-r--r-- | src/devices/cpu/mips/r4000.cpp | 3 |
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 |