summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/saturn/saturn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/saturn/saturn.cpp')
-rw-r--r--src/devices/cpu/saturn/saturn.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/saturn/saturn.cpp b/src/devices/cpu/saturn/saturn.cpp
index b6dbf0b98f9..591b0ff57c9 100644
--- a/src/devices/cpu/saturn/saturn.cpp
+++ b/src/devices/cpu/saturn/saturn.cpp
@@ -179,7 +179,7 @@ void saturn_device::device_start()
state_add( STATE_GENPCBASE, "CURPC", m_pc ).noshow();
state_add( STATE_GENFLAGS, "GENFLAGS", m_debugger_temp).formatstr("%2s").noshow();
- m_icountptr = &m_icount;
+ set_icountptr(m_icount);
}
void saturn_device::state_string_export(const device_state_entry &entry, std::string &str) const
@@ -349,7 +349,7 @@ void saturn_device::execute_run()
{
m_oldpc = m_pc;
- debugger_instruction_hook(this, m_pc);
+ debugger_instruction_hook(m_pc);
if ( m_sleeping )
{