summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/apple2e.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-02-24 14:07:24 +0100
committer Olivier Galibert <galibert@pobox.com>2018-02-24 14:09:46 +0100
commitc5345b9ea8a5b6939c55621024bce8e1eade4fdd (patch)
treed75c88692ac40de1f5d7b0a647de7aa4b987bcdc /src/mame/drivers/apple2e.cpp
parent1b9a2d8891b1c809f56622380447500e9716790d (diff)
Grammar police (nw)
Diffstat (limited to 'src/mame/drivers/apple2e.cpp')
-rw-r--r--src/mame/drivers/apple2e.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mame/drivers/apple2e.cpp b/src/mame/drivers/apple2e.cpp
index 5fd680612d6..246c2436481 100644
--- a/src/mame/drivers/apple2e.cpp
+++ b/src/mame/drivers/apple2e.cpp
@@ -1309,7 +1309,7 @@ void apple2e_state::cec_lcrom_update()
// most softswitches don't care about read vs write, so handle them here
void apple2e_state::do_io(address_space &space, int offset, bool is_iic)
{
- if(machine().side_effect_disabled()) return;
+ if(machine().side_effects_disabled()) return;
// Handle C058-C05F according to IOUDIS
if ((offset & 0x58) == 0x58)
@@ -1519,7 +1519,7 @@ void apple2e_state::do_io(address_space &space, int offset, bool is_iic)
READ8_MEMBER(apple2e_state::c000_r)
{
- if(machine().side_effect_disabled()) return read_floatingbus();
+ if(machine().side_effects_disabled()) return read_floatingbus();
switch (offset)
{
@@ -1630,7 +1630,7 @@ READ8_MEMBER(apple2e_state::c000_r)
WRITE8_MEMBER(apple2e_state::c000_w)
{
- if(machine().side_effect_disabled()) return;
+ if(machine().side_effects_disabled()) return;
switch (offset)
{
@@ -1756,7 +1756,7 @@ WRITE8_MEMBER(apple2e_state::c000_w)
READ8_MEMBER(apple2e_state::c000_iic_r)
{
- if(machine().side_effect_disabled()) return read_floatingbus();
+ if(machine().side_effects_disabled()) return read_floatingbus();
switch (offset)
{
@@ -1900,7 +1900,7 @@ READ8_MEMBER(apple2e_state::c000_iic_r)
WRITE8_MEMBER(apple2e_state::c000_iic_w)
{
- if(machine().side_effect_disabled()) return;
+ if(machine().side_effects_disabled()) return;
switch (offset)
{
@@ -2098,7 +2098,7 @@ void apple2e_state::update_iic_mouse()
READ8_MEMBER(apple2e_state::c080_r)
{
- if(!machine().side_effect_disabled())
+ if(!machine().side_effects_disabled())
{
int slot;
@@ -2175,7 +2175,7 @@ uint8_t apple2e_state::read_slot_rom(int slotbias, int offset)
if (m_slotdevice[slotnum] != nullptr)
{
- if ((m_cnxx_slot == CNXX_UNCLAIMED) && (m_slotdevice[slotnum]->take_c800()) && (!machine().side_effect_disabled()))
+ if ((m_cnxx_slot == CNXX_UNCLAIMED) && (m_slotdevice[slotnum]->take_c800()) && (!machine().side_effects_disabled()))
{
m_cnxx_slot = slotnum;
update_slotrom_banks();
@@ -2193,7 +2193,7 @@ void apple2e_state::write_slot_rom(int slotbias, int offset, uint8_t data)
if (m_slotdevice[slotnum] != nullptr)
{
- if ((m_cnxx_slot == CNXX_UNCLAIMED) && (m_slotdevice[slotnum]->take_c800()) && (!machine().side_effect_disabled()))
+ if ((m_cnxx_slot == CNXX_UNCLAIMED) && (m_slotdevice[slotnum]->take_c800()) && (!machine().side_effects_disabled()))
{
m_cnxx_slot = slotnum;
update_slotrom_banks();
@@ -2296,7 +2296,7 @@ READ8_MEMBER(apple2e_state::c800_r)
if (offset == 0x7ff)
{
- if (!machine().side_effect_disabled())
+ if (!machine().side_effects_disabled())
{
m_cnxx_slot = CNXX_UNCLAIMED;
update_slotrom_banks();
@@ -2320,7 +2320,7 @@ READ8_MEMBER(apple2e_state::c800_int_r)
return mig_r(offset-0x600);
}
- if ((offset == 0x7ff) && !machine().side_effect_disabled())
+ if ((offset == 0x7ff) && !machine().side_effects_disabled())
{
m_cnxx_slot = CNXX_UNCLAIMED;
m_intc8rom = false;
@@ -2342,7 +2342,7 @@ READ8_MEMBER(apple2e_state::c800_b2_int_r)
return mig_r(offset-0x600);
}
- if ((offset == 0x7ff) && !machine().side_effect_disabled())
+ if ((offset == 0x7ff) && !machine().side_effects_disabled())
{
m_cnxx_slot = CNXX_UNCLAIMED;
m_intc8rom = false;
@@ -2362,7 +2362,7 @@ WRITE8_MEMBER(apple2e_state::c800_w)
if (offset == 0x7ff)
{
- if (!machine().side_effect_disabled())
+ if (!machine().side_effects_disabled())
{
m_cnxx_slot = CNXX_UNCLAIMED;
m_intc8rom = false;