From e448f04a7f144190016fb6547df817c7c92ea1bb Mon Sep 17 00:00:00 2001 From: "therealmogminer@gmail.com" Date: Tue, 5 Jul 2016 16:38:21 +0200 Subject: [PATCH] Remove some debug printfs --- src/devices/cpu/sparc/mb86901.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/devices/cpu/sparc/mb86901.cpp b/src/devices/cpu/sparc/mb86901.cpp index fd7aa4b5430..f575af6ebec 100644 --- a/src/devices/cpu/sparc/mb86901.cpp +++ b/src/devices/cpu/sparc/mb86901.cpp @@ -1173,7 +1173,6 @@ void mb86901_device::execute_wrsr(UINT32 op) else { PSR = result &~ PSR_ZERO_MASK; - printf("WRPSR: %08x\n", result); } BREAK_PSR; } @@ -1199,7 +1198,6 @@ void mb86901_device::execute_wrsr(UINT32 op) else { TBR = result & 0xfffff000; - printf("TBR: %08x\n", TBR); } } } @@ -2608,7 +2606,6 @@ void mb86901_device::select_trap() m_tt = 0x10 | m_interrupt_level; TBR |= m_tt << 4; - printf("TBR is now: %08x\n", TBR); m_trap = 0; m_instruction_access_exception = 0; m_illegal_instruction = 0; @@ -2748,11 +2745,9 @@ void mb86901_device::execute_trap() { PC = TBR; nPC = TBR + 4; - printf("Not reset trap, new PC: %08x\n", PC); } else { - printf("Reset trap, new PC: %08x\n", PC); PC = 0; nPC = 4; m_reset_trap = 0; @@ -2956,7 +2951,6 @@ void mb86901_device::execute_step() { m_trap = 1; m_interrupt_level = m_bp_irl; - printf("trap 1, interrupt level %d\n", m_bp_irl); } if (m_trap)