mirror of
https://github.com/holub/mame
synced 2025-05-25 23:35:26 +03:00
Fix compile error (nw)
This commit is contained in:
parent
35e1d98c91
commit
dcb15c77a8
@ -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
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user