diff options
Diffstat (limited to 'src/devices/machine/mm58167.cpp')
-rw-r--r-- | src/devices/machine/mm58167.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/mm58167.cpp b/src/devices/machine/mm58167.cpp index 3ac6c77bfde..b9174c75344 100644 --- a/src/devices/machine/mm58167.cpp +++ b/src/devices/machine/mm58167.cpp @@ -183,7 +183,7 @@ READ8_MEMBER(mm58167_device::read) { // printf("read reg %x = %02x\n", offset, m_regs[offset]); - if (offset == R_CTL_IRQSTATUS && !machine().debugger_access()) + if (offset == R_CTL_IRQSTATUS && !space.debugger_access()) { // reading the IRQ status clears IRQ line and IRQ status uint8_t data = m_regs[offset]; |