summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/hphybrid/hphybrid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/hphybrid/hphybrid.cpp')
-rw-r--r--src/devices/cpu/hphybrid/hphybrid.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/hphybrid/hphybrid.cpp b/src/devices/cpu/hphybrid/hphybrid.cpp
index d726f7d6191..1104e146a7b 100644
--- a/src/devices/cpu/hphybrid/hphybrid.cpp
+++ b/src/devices/cpu/hphybrid/hphybrid.cpp
@@ -223,7 +223,7 @@ void hp_hybrid_cpu_device::device_start()
save_item(NAME(m_reg_I));
save_item(NAME(m_forced_bsc_25));
- m_icountptr = &m_icount;
+ set_icountptr(m_icount);
m_pa_changed_func.resolve_safe();
}
@@ -241,7 +241,7 @@ void hp_hybrid_cpu_device::execute_run()
if (BIT(m_flags , HPHYBRID_DMAEN_BIT) && BIT(m_flags , HPHYBRID_DMAR_BIT)) {
handle_dma();
} else {
- debugger_instruction_hook(this, m_genpc);
+ debugger_instruction_hook(m_genpc);
m_reg_I = execute_one(m_reg_I);