summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/nanoprocessor/nanoprocessor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/nanoprocessor/nanoprocessor.cpp')
-rw-r--r--src/devices/cpu/nanoprocessor/nanoprocessor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/nanoprocessor/nanoprocessor.cpp b/src/devices/cpu/nanoprocessor/nanoprocessor.cpp
index 802663f86c1..941eb3f95e1 100644
--- a/src/devices/cpu/nanoprocessor/nanoprocessor.cpp
+++ b/src/devices/cpu/nanoprocessor/nanoprocessor.cpp
@@ -90,7 +90,7 @@ void hp_nanoprocessor_device::device_start()
save_item(NAME(m_reg_ISR));
save_item(NAME(m_flags));
- m_icountptr = &m_icount;
+ set_icountptr(m_icount);
m_dc_changed_func.resolve_safe();
m_read_dc_func.resolve_safe(0xff);
@@ -132,7 +132,7 @@ void hp_nanoprocessor_device::execute_run()
// Need this to propagate the clearing of DC7 to the clearing of int. line
yield();
} else {
- debugger_instruction_hook(this, m_reg_PA);
+ debugger_instruction_hook(m_reg_PA);
uint8_t opcode = fetch();
execute_one(opcode);