diff options
author | 2021-12-27 18:27:00 -0600 | |
---|---|---|
committer | 2021-12-27 19:27:00 -0500 | |
commit | d0874ff356329e6f1632fde6b2dd1b9016c2b3af (patch) | |
tree | 25635d581781ca8bb059fd1468fae0894eaa14bc | |
parent | 589ff52f090c8d3d80e76a4bbb3396f24c636378 (diff) |
h8_sci_device: don't set TDRE when receiving (#9051)
-rw-r--r-- | src/devices/cpu/h8/h8_sci.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
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"); |