From d0874ff356329e6f1632fde6b2dd1b9016c2b3af Mon Sep 17 00:00:00 2001 From: Devin Acker Date: Mon, 27 Dec 2021 18:27:00 -0600 Subject: h8_sci_device: don't set TDRE when receiving (#9051) --- src/devices/cpu/h8/h8_sci.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/devices/cpu/h8/h8_sci.cpp b/src/devices/cpu/h8/h8_sci.cpp index 04a666e5066..0d73b82bf81 100644 --- a/src/devices/cpu/h8/h8_sci.cpp +++ b/src/devices/cpu/h8/h8_sci.cpp @@ -623,7 +623,6 @@ void h8_sci_device::tx_dropped_edge() void h8_sci_device::rx_start() { - ssr |= SSR_TDRE; rx_parity = smr & SMR_OE ? 0 : 1; rsr = 0x00; if(V>=2) logerror("start receive\n"); -- cgit v1.2.3