summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/i86/i86.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/i86/i86.cpp')
-rw-r--r--src/devices/cpu/i86/i86.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/i86/i86.cpp b/src/devices/cpu/i86/i86.cpp
index f63e667d9da..4ce0bffc431 100644
--- a/src/devices/cpu/i86/i86.cpp
+++ b/src/devices/cpu/i86/i86.cpp
@@ -237,7 +237,7 @@ void i8086_cpu_device::execute_run()
if (!m_seg_prefix)
{
- debugger_instruction_hook( this, update_pc() );
+ debugger_instruction_hook( update_pc() );
}
uint8_t op = fetch_op();
@@ -504,7 +504,7 @@ void i8086_common_cpu_device::device_start()
state_add(STATE_GENFLAGS, "GENFLAGS", m_TF).formatstr("%16s").noshow();
- m_icountptr = &m_icount;
+ set_icountptr(m_icount);
m_lock_handler.resolve_safe();
}