diff options
Diffstat (limited to 'src/devices/bus/ti99x/datamux.cpp')
-rw-r--r-- | src/devices/bus/ti99x/datamux.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ti99x/datamux.cpp b/src/devices/bus/ti99x/datamux.cpp index bc1c74ce4d2..34f25a89c91 100644 --- a/src/devices/bus/ti99x/datamux.cpp +++ b/src/devices/bus/ti99x/datamux.cpp @@ -322,7 +322,7 @@ READ16_MEMBER( ti99_datamux_device::read ) uint16_t value = 0; // Care for debugger - if (machine().debugger_access()) + if (space.debugger_access()) { return debugger_read(space, offset); } @@ -371,7 +371,7 @@ READ16_MEMBER( ti99_datamux_device::read ) */ WRITE16_MEMBER( ti99_datamux_device::write ) { - if (machine().debugger_access()) + if (space.debugger_access()) { debugger_write(space, offset, data); return; |