diff options
Diffstat (limited to 'src/devices/cpu/alto2/a2hw.cpp')
-rw-r--r-- | src/devices/cpu/alto2/a2hw.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/cpu/alto2/a2hw.cpp b/src/devices/cpu/alto2/a2hw.cpp index 62f38c65f17..43dc4709a38 100644 --- a/src/devices/cpu/alto2/a2hw.cpp +++ b/src/devices/cpu/alto2/a2hw.cpp @@ -241,7 +241,7 @@ READ16_MEMBER( alto2_cpu_device::utilin_r ) data = m_hw.utilin; - if (!machine().debugger_access()) { + if (!space.debugger_access()) { LOG((this,LOG_HW,2," UTILIN rd %#o (%#o)\n", offset, data)); } return data; @@ -257,7 +257,7 @@ READ16_MEMBER( alto2_cpu_device::xbus_r ) { uint16_t data = m_hw.xbus[offset & 3]; - if (!machine().debugger_access()) { + if (!space.debugger_access()) { LOG((this,LOG_HW,2," XBUS[%d] rd %#o (%#o)\n", offset & 3, offset, data)); } return data; @@ -273,7 +273,7 @@ READ16_MEMBER( alto2_cpu_device::xbus_r ) */ WRITE16_MEMBER( alto2_cpu_device::xbus_w ) { - if (!machine().debugger_access()) { + if (!space.debugger_access()) { LOG((this,LOG_HW,2," XBUS[%d] wr %#o (%#o)\n", offset & 3, offset, data)); } m_hw.xbus[offset&3] = data; @@ -288,7 +288,7 @@ WRITE16_MEMBER( alto2_cpu_device::xbus_w ) READ16_MEMBER( alto2_cpu_device::utilout_r ) { uint16_t data = m_hw.utilout ^ 0177777; - if (!machine().debugger_access()) { + if (!space.debugger_access()) { LOG((this,0,2," UTILOUT rd %#o (%#o)\n", offset, data)); } return data; @@ -304,7 +304,7 @@ READ16_MEMBER( alto2_cpu_device::utilout_r ) */ WRITE16_MEMBER( alto2_cpu_device::utilout_w ) { - if (!machine().debugger_access()) { + if (!space.debugger_access()) { LOG((this,LOG_HW,2," UTILOUT wr %#o (%#o)\n", offset, data)); } m_hw.utilout = data ^ 0177777; |