diff options
Diffstat (limited to 'src/devices/bus/ti99_peb/hfdc.cpp')
-rw-r--r-- | src/devices/bus/ti99_peb/hfdc.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/ti99_peb/hfdc.cpp b/src/devices/bus/ti99_peb/hfdc.cpp index 36eac4d8a45..f3ea9740a16 100644 --- a/src/devices/bus/ti99_peb/hfdc.cpp +++ b/src/devices/bus/ti99_peb/hfdc.cpp @@ -105,7 +105,7 @@ SETADDRESS_DBIN_MEMBER( myarc_hfdc_device::setaddress_dbin ) { // Do not allow setaddress for the debugger. It will mess up the // setaddress/memory access pairs when the CPU enters wait states. - if (machine().debugger_access()) return; + if (space.debugger_access()) return; // Selection login in the PAL and some circuits on the board @@ -197,7 +197,7 @@ void myarc_hfdc_device::debug_write(offs_t offset, uint8_t data) */ READ8Z_MEMBER(myarc_hfdc_device::readz) { - if (machine().debugger_access()) + if (space.debugger_access()) { debug_read(offset, value); return; @@ -276,7 +276,7 @@ READ8Z_MEMBER(myarc_hfdc_device::readz) */ WRITE8_MEMBER( myarc_hfdc_device::write ) { - if (machine().debugger_access()) + if (space.debugger_access()) { debug_write(offset, data); return; |