summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms32010/tms32010.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms32010/tms32010.cpp')
-rw-r--r--src/devices/cpu/tms32010/tms32010.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms32010/tms32010.cpp b/src/devices/cpu/tms32010/tms32010.cpp
index c5e15660a6f..8b336a9d401 100644
--- a/src/devices/cpu/tms32010/tms32010.cpp
+++ b/src/devices/cpu/tms32010/tms32010.cpp
@@ -871,7 +871,7 @@ void tms32010_device::device_start()
state_add(STATE_GENSP, "GENSP", m_STACK[3]).formatstr("%04X").noshow();
state_add(STATE_GENFLAGS, "GENFLAGS", m_STR).formatstr("%16s").noshow();
- m_icountptr = &m_icount;
+ set_icountptr(m_icount);
}
@@ -965,7 +965,7 @@ void tms32010_device::execute_run()
m_PREVPC = m_PC;
- debugger_instruction_hook(this, m_PC);
+ debugger_instruction_hook(m_PC);
m_opcode.d = M_RDOP(m_PC);
m_PC++;