summaryrefslogtreecommitdiffstats
path: root/src/devices/cpu/tms32031/tms32031.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms32031/tms32031.cpp')
-rw-r--r--src/devices/cpu/tms32031/tms32031.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms32031/tms32031.cpp b/src/devices/cpu/tms32031/tms32031.cpp
index 713a511f304..c8d1d0b363e 100644
--- a/src/devices/cpu/tms32031/tms32031.cpp
+++ b/src/devices/cpu/tms32031/tms32031.cpp
@@ -274,7 +274,7 @@ tms3203x_device::tms3203x_device(const machine_config &mconfig, device_type type
memset(&m_r, 0, sizeof(m_r));
// set our instruction counter
- m_icountptr = &m_icount;
+ set_icountptr(m_icount);
#if (TMS_3203X_LOG_OPCODE_USAGE)
memset(m_hits, 0, sizeof(m_hits));
@@ -805,7 +805,7 @@ void tms3203x_device::execute_run()
continue;
}
- debugger_instruction_hook(this, m_pc);
+ debugger_instruction_hook(m_pc);
execute_one();
}
}