Remove some debug printfs

This commit is contained in:
therealmogminer@gmail.com 2016-07-05 16:38:21 +02:00
parent 016a6bd61b
commit e448f04a7f

View File

@ -1173,7 +1173,6 @@ void mb86901_device::execute_wrsr(UINT32 op)
else else
{ {
PSR = result &~ PSR_ZERO_MASK; PSR = result &~ PSR_ZERO_MASK;
printf("WRPSR: %08x\n", result);
} }
BREAK_PSR; BREAK_PSR;
} }
@ -1199,7 +1198,6 @@ void mb86901_device::execute_wrsr(UINT32 op)
else else
{ {
TBR = result & 0xfffff000; TBR = result & 0xfffff000;
printf("TBR: %08x\n", TBR);
} }
} }
} }
@ -2608,7 +2606,6 @@ void mb86901_device::select_trap()
m_tt = 0x10 | m_interrupt_level; m_tt = 0x10 | m_interrupt_level;
TBR |= m_tt << 4; TBR |= m_tt << 4;
printf("TBR is now: %08x\n", TBR);
m_trap = 0; m_trap = 0;
m_instruction_access_exception = 0; m_instruction_access_exception = 0;
m_illegal_instruction = 0; m_illegal_instruction = 0;
@ -2748,11 +2745,9 @@ void mb86901_device::execute_trap()
{ {
PC = TBR; PC = TBR;
nPC = TBR + 4; nPC = TBR + 4;
printf("Not reset trap, new PC: %08x\n", PC);
} }
else else
{ {
printf("Reset trap, new PC: %08x\n", PC);
PC = 0; PC = 0;
nPC = 4; nPC = 4;
m_reset_trap = 0; m_reset_trap = 0;
@ -2956,7 +2951,6 @@ void mb86901_device::execute_step()
{ {
m_trap = 1; m_trap = 1;
m_interrupt_level = m_bp_irl; m_interrupt_level = m_bp_irl;
printf("trap 1, interrupt level %d\n", m_bp_irl);
} }
if (m_trap) if (m_trap)