summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/e0c6200/e0c6s46.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/e0c6200/e0c6s46.cpp')
-rw-r--r--src/devices/cpu/e0c6200/e0c6s46.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/e0c6200/e0c6s46.cpp b/src/devices/cpu/e0c6200/e0c6s46.cpp
index 495e2c989fe..7563f4bc4a3 100644
--- a/src/devices/cpu/e0c6200/e0c6s46.cpp
+++ b/src/devices/cpu/e0c6200/e0c6s46.cpp
@@ -627,7 +627,7 @@ READ8_MEMBER(e0c6s46_device::io_r)
{
// irq flags are reset(acked) when read
uint8_t flag = m_irqflag[offset];
- if (!machine().debugger_access())
+ if (!space.debugger_access())
m_irqflag[offset] = 0;
return flag;
}
@@ -704,7 +704,7 @@ READ8_MEMBER(e0c6s46_device::io_r)
break;
default:
- if (!machine().debugger_access())
+ if (!space.debugger_access())
logerror("%s unknown io_r from $0F%02X at $%04X\n", tag(), offset, m_prev_pc);
break;
}