sharc.cpp: leftover debug code removal (nw)

This commit is contained in:
angelosa 2017-09-17 01:36:03 +02:00
parent 81939d8634
commit bd4ce51a1c

View File

@ -996,12 +996,6 @@ void adsp21062_device::check_interrupts()
void adsp21062_device::execute_run() void adsp21062_device::execute_run()
{ {
static bool first = true;
if(first) {
first = false;
machine().debug_break();
}
if (m_enable_drc) if (m_enable_drc)
{ {
if (m_core->irq_pending != 0) if (m_core->irq_pending != 0)
@ -1035,12 +1029,6 @@ void adsp21062_device::execute_run()
m_core->astat_old_old = m_core->astat_old; m_core->astat_old_old = m_core->astat_old;
m_core->astat_old = m_core->astat; m_core->astat_old = m_core->astat;
static bool first = true;
if(first) {
first = false;
machine().debug_break();
}
debugger_instruction_hook(this, m_core->pc); debugger_instruction_hook(this, m_core->pc);
m_core->opcode = m_program->read_qword(m_core->pc << 3); m_core->opcode = m_program->read_qword(m_core->pc << 3);