From ea958c9ccbcea233349cbb65d83b7e35bc83cc83 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Tue, 31 Oct 2017 00:28:38 +1100 Subject: [PATCH] forgot the other error (nw) --- src/devices/machine/z80sio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/machine/z80sio.cpp b/src/devices/machine/z80sio.cpp index 967b6fb2b5c..36a38cf8148 100644 --- a/src/devices/machine/z80sio.cpp +++ b/src/devices/machine/z80sio.cpp @@ -1290,7 +1290,7 @@ void z80sio_channel::receive_data() switch (m_wr1 & WR1_RX_INT_MODE_MASK) { case WR1_RX_INT_FIRST: - if (m_rx_first || (rx_error & RR1_CRC_FRAMING_ERROR)) + if (m_rx_first || (rx_error & (RR1_RX_OVERRUN_ERROR | RR1_CRC_FRAMING_ERROR))) m_uart->trigger_interrupt(m_index, INT_RECEIVE); m_rx_first = 0; break;