diff --git a/src/devices/machine/68230pit.cpp b/src/devices/machine/68230pit.cpp index 6b19873be6a..0b3888ca47d 100644 --- a/src/devices/machine/68230pit.cpp +++ b/src/devices/machine/68230pit.cpp @@ -437,7 +437,7 @@ void pit68230_device::wr_pitreg_pacr(uint8_t data) } else { - LOG((" - H2 cleared because beeing disabled in PGCR\n")); + LOG((" - H2 cleared because being disabled in PGCR\n")); m_h2_out_cb(CLEAR_LINE); } } @@ -473,7 +473,7 @@ void pit68230_device::wr_pitreg_pbcr(uint8_t data) } else { - LOG((" - H4 cleared because beeing disabled in PGCR\n")); + LOG((" - H4 cleared because being disabled in PGCR\n")); m_h4_out_cb(CLEAR_LINE); } } diff --git a/src/devices/machine/scnxx562.cpp b/src/devices/machine/scnxx562.cpp index 7dfdfdc624f..87655eeed02 100644 --- a/src/devices/machine/scnxx562.cpp +++ b/src/devices/machine/scnxx562.cpp @@ -2544,13 +2544,13 @@ void duscc_channel::update_serial() if (m_brg_rx_rate != 0) { - if (m_brg_rx_rate == 1) m_brg_rx_rate = 0; // BRG beeing disabled + if (m_brg_rx_rate == 1) m_brg_rx_rate = 0; // BRG being disabled set_rcv_rate(m_brg_rx_rate); LOG((" - Baud Rate Generator: %d mode: RX:%dx\n", m_brg_rx_rate, get_rx_clock_mode())); } if (m_brg_tx_rate != 0) { - if (m_brg_tx_rate == 1) m_brg_tx_rate = 0; // BRG beeing disabled + if (m_brg_tx_rate == 1) m_brg_tx_rate = 0; // BRG being disabled set_tra_rate(m_brg_tx_rate); LOG((" - Baud Rate Generator: %d mode: TX:%dx\n", m_brg_tx_rate, get_tx_clock_mode())); } diff --git a/src/devices/machine/z80scc.cpp b/src/devices/machine/z80scc.cpp index ef665d29970..df25b8ae27b 100644 --- a/src/devices/machine/z80scc.cpp +++ b/src/devices/machine/z80scc.cpp @@ -479,7 +479,7 @@ int z80scc_device::get_extint_priority(int type) case z80scc_channel::INT_EXTERNAL: prio = z80scc_channel::INT_EXTERNAL_PRIO; break; case z80scc_channel::INT_TRANSMIT: prio = z80scc_channel::INT_TRANSMIT_PRIO; break; case z80scc_channel::INT_SPECIAL: prio = z80scc_channel::INT_SPECIAL_PRIO; break; - default: logerror("Bad interrupt source beeing prioritized!"); + default: logerror("Bad interrupt source being prioritized!"); } return prio; } @@ -2121,7 +2121,7 @@ void z80scc_channel::do_sccreg_wr14(uint8_t data) logerror("\"%s\": %c : %s Mics Control Bits command %02x - not implemented \n", m_owner->tag(), 'A' + m_index, FUNCNAME, data); } /* Based on baudrate code from 8530scc.cpp */ - if ( !(m_wr14 & WR14_BRG_ENABLE) && (data & WR14_BRG_ENABLE) ) // baud rate generator beeing enabled? + if ( !(m_wr14 & WR14_BRG_ENABLE) && (data & WR14_BRG_ENABLE) ) // baud rate generator being enabled? { LOG(("\"%s\": %c : %s Mics Control Bits Baudrate generator enabled with ", m_owner->tag(), 'A' + m_index, FUNCNAME)); if (data & WR14_BRG_SOURCE) // Do we use the PCLK as baudrate source @@ -2140,7 +2140,7 @@ void z80scc_channel::do_sccreg_wr14(uint8_t data) LOG(("external clock source\n")); } } - else if ( (m_wr14 & WR14_BRG_ENABLE) && !(data & WR14_BRG_ENABLE) ) // baud rate generator beeing disabled? + else if ( (m_wr14 & WR14_BRG_ENABLE) && !(data & WR14_BRG_ENABLE) ) // baud rate generator being disabled? { #if LOCAL_BRG baudtimer->adjust(attotime::never, TIMER_ID_BAUD, attotime::never); // Stop the baudrate generator