diff options
author | 2016-07-05 16:38:21 +0200 | |
---|---|---|
committer | 2016-07-05 16:38:21 +0200 | |
commit | e448f04a7f144190016fb6547df817c7c92ea1bb (patch) | |
tree | 7f8a9d2505154a3ebefdc0b450e9049005d0fcf4 | |
parent | 016a6bd61b019bc1c515cdeffe4b856ad38e8b5a (diff) |
Remove some debug printfs
-rw-r--r-- | src/devices/cpu/sparc/mb86901.cpp | 6 |
1 files changed, 0 insertions, 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) |