Typo fix: beeing → being

This commit is contained in:
Jordi Mallach 2016-12-14 13:36:34 +01:00
parent af98f7eba4
commit 9a63b84758
3 changed files with 7 additions and 7 deletions

View File

@ -437,7 +437,7 @@ void pit68230_device::wr_pitreg_pacr(uint8_t data)
} }
else 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); m_h2_out_cb(CLEAR_LINE);
} }
} }
@ -473,7 +473,7 @@ void pit68230_device::wr_pitreg_pbcr(uint8_t data)
} }
else 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); m_h4_out_cb(CLEAR_LINE);
} }
} }

View File

@ -2544,13 +2544,13 @@ void duscc_channel::update_serial()
if (m_brg_rx_rate != 0) 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); set_rcv_rate(m_brg_rx_rate);
LOG((" - Baud Rate Generator: %d mode: RX:%dx\n", m_brg_rx_rate, get_rx_clock_mode())); 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 != 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); set_tra_rate(m_brg_tx_rate);
LOG((" - Baud Rate Generator: %d mode: TX:%dx\n", m_brg_tx_rate, get_tx_clock_mode())); LOG((" - Baud Rate Generator: %d mode: TX:%dx\n", m_brg_tx_rate, get_tx_clock_mode()));
} }

View File

@ -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_EXTERNAL: prio = z80scc_channel::INT_EXTERNAL_PRIO; break;
case z80scc_channel::INT_TRANSMIT: prio = z80scc_channel::INT_TRANSMIT_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; 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; 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); 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 */ /* 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)); 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 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")); 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 #if LOCAL_BRG
baudtimer->adjust(attotime::never, TIMER_ID_BAUD, attotime::never); // Stop the baudrate generator baudtimer->adjust(attotime::never, TIMER_ID_BAUD, attotime::never); // Stop the baudrate generator