diff options
author | 2018-02-24 14:07:24 +0100 | |
---|---|---|
committer | 2018-02-24 14:09:46 +0100 | |
commit | c5345b9ea8a5b6939c55621024bce8e1eade4fdd (patch) | |
tree | d75c88692ac40de1f5d7b0a647de7aa4b987bcdc /src/devices/machine/z80sio.cpp | |
parent | 1b9a2d8891b1c809f56622380447500e9716790d (diff) |
Grammar police (nw)
Diffstat (limited to 'src/devices/machine/z80sio.cpp')
-rw-r--r-- | src/devices/machine/z80sio.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/z80sio.cpp b/src/devices/machine/z80sio.cpp index 3d706098dff..4f236814857 100644 --- a/src/devices/machine/z80sio.cpp +++ b/src/devices/machine/z80sio.cpp @@ -748,7 +748,7 @@ uint8_t i8274_new_device::read_vector() constexpr uint8_t RR1_SPECIAL(RR1_RX_OVERRUN_ERROR | RR1_CRC_FRAMING_ERROR | RR1_END_OF_FRAME); // in non-vectored mode this serves the same function as the end of the second acknowldege cycle - if (!(m_chanB->m_wr2 & WR2_VECTORED_INT) && !machine().side_effect_disabled()) + if (!(m_chanB->m_wr2 & WR2_VECTORED_INT) && !machine().side_effects_disabled()) { m_int_state[prio[i]] |= Z80_DAISY_IEO; check_interrupts(); @@ -1384,7 +1384,7 @@ uint8_t z80sio_channel::control_read() //LOG("%s %s\n",FUNCNAME, tag()); // mask out register index - if (!machine().side_effect_disabled()) + if (!machine().side_effects_disabled()) m_wr0 &= ~WR0_REGISTER_MASK; switch (reg) @@ -1652,7 +1652,7 @@ uint8_t z80sio_channel::data_read() { uint8_t const data = uint8_t(m_rx_data_fifo & 0x000000ffU); - if (!machine().side_effect_disabled()) + if (!machine().side_effects_disabled()) { // framing and overrun errors need to be cleared to advance the FIFO in interrupt-on-first mode // TODO: Intel 8274 manual doesn't mention this behaviour - is it specific to Z80 SIO? |