mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
z80scc: Make receive error logging conditional
This commit is contained in:
parent
0e06f6104e
commit
a738dc0739
@ -2584,7 +2584,7 @@ void z80scc_channel::receive_data(uint8_t data)
|
||||
// store received character but do not step the fifo
|
||||
m_rx_data_fifo[m_rx_fifo_wp] = data;
|
||||
|
||||
logerror("Receive_data() Error %02x\n", m_rx_error_fifo[m_rx_fifo_wp] & (RR1_CRC_FRAMING_ERROR | RR1_RX_OVERRUN_ERROR | RR1_PARITY_ERROR));
|
||||
LOGRCV("Receive_data() Error %02x\n", m_rx_error_fifo[m_rx_fifo_wp] & (RR1_CRC_FRAMING_ERROR | RR1_RX_OVERRUN_ERROR | RR1_PARITY_ERROR));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user