diff options
Diffstat (limited to 'src/mame/machine/isbc_215g.cpp')
-rw-r--r-- | src/mame/machine/isbc_215g.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/isbc_215g.cpp b/src/mame/machine/isbc_215g.cpp index e94622e9367..0f7b084955d 100644 --- a/src/mame/machine/isbc_215g.cpp +++ b/src/mame/machine/isbc_215g.cpp @@ -132,7 +132,7 @@ READ16_MEMBER(isbc_215g_device::io_r) break; case 0x0c: // reset channel 2 - if(space.debugger_access()) // reading this is bad + if(machine().debugger_access()) // reading this is bad break; m_dmac->sel_w(1); m_dmac->ca_w(1); @@ -294,7 +294,7 @@ WRITE16_MEMBER(isbc_215g_device::io_w) READ16_MEMBER(isbc_215g_device::mem_r) { // XXX: hack to permit debugger to disassemble rom - if(space.debugger_access() && (offset < 0x1fff)) + if(machine().debugger_access() && (offset < 0x1fff)) return m_dmac->space(AS_IO).read_word_unaligned(offset*2); switch(offset) |