mirror of
https://github.com/holub/mame
synced 2025-06-26 14:24:12 +03:00
Remove some debug printfs
This commit is contained in:
parent
016a6bd61b
commit
e448f04a7f
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user