ps2sony: Disable debug printing, nw

This commit is contained in:
mooglyguy 2018-07-05 13:32:59 +02:00
parent 9d509bd29c
commit cd4c3b694e
2 changed files with 3 additions and 1 deletions

View File

@ -1076,6 +1076,7 @@ void r3000_device::execute_run()
m_ppc = m_pc; m_ppc = m_pc;
debugger_instruction_hook(m_pc); debugger_instruction_hook(m_pc);
/*
if ((m_pc & 0x1fffffff) == 0x00012C48 || (m_pc & 0x1fffffff) == 0x0001420C || (m_pc & 0x1fffffff) == 0x0001430C) if ((m_pc & 0x1fffffff) == 0x00012C48 || (m_pc & 0x1fffffff) == 0x0001420C || (m_pc & 0x1fffffff) == 0x0001430C)
{ {
uint32_t ptr = m_r[5]; uint32_t ptr = m_r[5];
@ -1090,6 +1091,7 @@ void r3000_device::execute_run()
} }
fflush(stdout); fflush(stdout);
} }
*/
// instruction fetch // instruction fetch
m_op = readop(m_pc); m_op = readop(m_pc);

View File

@ -629,7 +629,7 @@ TIMER_CALLBACK_MEMBER(ps2sony_state::vblank)
WRITE8_MEMBER(ps2sony_state::debug_w) WRITE8_MEMBER(ps2sony_state::debug_w)
{ {
printf("%c", (char)data); //printf("%c", (char)data);
} }
WRITE64_MEMBER(ps2sony_state::ee_iop_ram_w) WRITE64_MEMBER(ps2sony_state::ee_iop_ram_w)