Fix compile error (nw)

This commit is contained in:
Wilbert Pol 2012-06-08 17:28:13 +00:00
parent 35e1d98c91
commit dcb15c77a8
2 changed files with 2 additions and 2 deletions

View File

@ -1340,7 +1340,7 @@ void tms9900_device::acquire_instruction()
mem_read();
decode(m_current_value);
if (VERBOSE>3) LOG("tms9900: ===== Next operation %04x (%s) at %04x =====\n", IR, opname[m_command], PC);
debugger_instruction_hook(*this, PC);
debugger_instruction_hook(this, PC);
PC = (PC + 2) & 0xfffe;
// IAQ will be cleared in the main loop
}

View File

@ -1415,7 +1415,7 @@ void tms9995_device::next_command()
MPC = -1;
if (VERBOSE>3) LOG("tms9995: ===== Next operation %04x (%s) at %04x =====\n", m_instruction->IR, opname[m_instruction->command], PC-2);
PC_debug = PC - 2;
debugger_instruction_hook(*this, PC_debug);
debugger_instruction_hook(this, PC_debug);
m_first_cycle = m_icount;
}
}