summaryrefslogtreecommitdiffstats
path: root/src/devices/cpu/mips/r3000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/mips/r3000.cpp')
-rw-r--r--src/devices/cpu/mips/r3000.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/mips/r3000.cpp b/src/devices/cpu/mips/r3000.cpp
index 57f0dfe0d96..60ddfc1b594 100644
--- a/src/devices/cpu/mips/r3000.cpp
+++ b/src/devices/cpu/mips/r3000.cpp
@@ -148,7 +148,7 @@ r3000_device::r3000_device(const machine_config &mconfig, device_type type, cons
m_in_brcond3(*this)
{
// set our instruction counter
- m_icountptr = &m_icount;
+ set_icountptr(m_icount);
// clear some additional state
memset(m_r, 0, sizeof(m_r));
@@ -1028,7 +1028,7 @@ void r3000_device::execute_run()
// debugging
m_ppc = m_pc;
- debugger_instruction_hook(this, m_pc);
+ debugger_instruction_hook(m_pc);
// instruction fetch
m_op = readop(m_pc);