summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/apple3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/apple3.cpp')
-rw-r--r--src/mame/machine/apple3.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/machine/apple3.cpp b/src/mame/machine/apple3.cpp
index 8a7dc30e397..db295ef3571 100644
--- a/src/mame/machine/apple3.cpp
+++ b/src/mame/machine/apple3.cpp
@@ -788,7 +788,7 @@ READ8_MEMBER(apple3_state::apple3_memory_r)
uint8_t rv = 0xff;
// (zp), y or (zp,x) read
- if (!space.debugger_access())
+ if (!machine().side_effect_disabled())
{
if ((m_indir_bank & 0x80) && (offset >= 0x100))
{
@@ -832,7 +832,7 @@ READ8_MEMBER(apple3_state::apple3_memory_r)
{
if (m_via_0_a & ENV_IOENABLE)
{
- if (!space.debugger_access())
+ if (!machine().side_effect_disabled())
{
rv = apple3_c0xx_r(space, offset-0xc000);
}
@@ -957,7 +957,7 @@ WRITE8_MEMBER(apple3_state::apple3_memory_w)
{
if (m_via_0_a & ENV_IOENABLE)
{
- if (!space.debugger_access())
+ if (!machine().side_effect_disabled())
{
apple3_c0xx_w(space, offset-0xc000, data);
}
@@ -1049,14 +1049,14 @@ WRITE8_MEMBER(apple3_state::apple3_memory_w)
}
else if (offset >= 0xffd0 && offset <= 0xffdf)
{
- if (!space.debugger_access())
+ if (!machine().side_effect_disabled())
{
m_via_0->write(space, offset, data);
}
}
else if (offset >= 0xffe0 && offset <= 0xffef)
{
- if (!space.debugger_access())
+ if (!machine().side_effect_disabled())
{
m_via_1->write(space, offset, data);
}