summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/clipper/clipper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/clipper/clipper.cpp')
-rw-r--r--src/devices/cpu/clipper/clipper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/clipper/clipper.cpp b/src/devices/cpu/clipper/clipper.cpp
index 096c2968335..fe0f2190849 100644
--- a/src/devices/cpu/clipper/clipper.cpp
+++ b/src/devices/cpu/clipper/clipper.cpp
@@ -122,7 +122,7 @@ void clipper_device::device_start()
get_dcammu().set_spaces(spaces);
// set our instruction counter
- m_icountptr = &m_icount;
+ set_icountptr(m_icount);
save_item(NAME(m_pc));
save_item(NAME(m_psw));
@@ -225,7 +225,7 @@ void clipper_device::execute_run()
while (m_icount > 0)
{
- debugger_instruction_hook(this, m_ip);
+ debugger_instruction_hook(m_ip);
// fetch and decode an instruction
if (decode_instruction())