summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/autoconfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/autoconfig.cpp')
-rw-r--r--src/devices/machine/autoconfig.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/autoconfig.cpp b/src/devices/machine/autoconfig.cpp
index 2a4a0a80aec..8125272ee83 100644
--- a/src/devices/machine/autoconfig.cpp
+++ b/src/devices/machine/autoconfig.cpp
@@ -124,7 +124,7 @@ READ16_MEMBER( amiga_autoconfig::autoconfig_read )
{
uint16_t data = m_cfg[offset] | 0x0fff;
- if (VERBOSE && !space.debugger_access())
+ if (VERBOSE && !space.machine().side_effect_disabled())
space.device().logerror("autoconfig_read %04x @ %02x [mask = %04x]\n", data, offset, mem_mask);
return data;
@@ -132,7 +132,7 @@ READ16_MEMBER( amiga_autoconfig::autoconfig_read )
WRITE16_MEMBER( amiga_autoconfig::autoconfig_write )
{
- if (VERBOSE && !space.debugger_access())
+ if (VERBOSE && !space.machine().side_effect_disabled())
space.device().logerror("autoconfig_write %04x @ %02x [mask = %04x]\n", data, offset, mem_mask);
switch (offset)