summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms32051/tms32051.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms32051/tms32051.cpp')
-rw-r--r--src/devices/cpu/tms32051/tms32051.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms32051/tms32051.cpp b/src/devices/cpu/tms32051/tms32051.cpp
index 54c53659b61..d846e2e4620 100644
--- a/src/devices/cpu/tms32051/tms32051.cpp
+++ b/src/devices/cpu/tms32051/tms32051.cpp
@@ -513,7 +513,7 @@ READ16_MEMBER( tms32051_device::cpuregs_r )
return m_io->read_word(offset << 1);
default:
- if (!space.debugger_access())
+ if (!machine().side_effect_disabled())
fatalerror("32051: cpuregs_r: unimplemented memory-mapped register %02X at %04X\n", offset, m_pc-1);
}
@@ -625,7 +625,7 @@ WRITE16_MEMBER( tms32051_device::cpuregs_w )
break;
default:
- if (!space.debugger_access())
+ if (!machine().side_effect_disabled())
fatalerror("32051: cpuregs_w: unimplemented memory-mapped register %02X, data %04X at %04X\n", offset, data, m_pc-1);
}
}