summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine
diff options
context:
space:
mode:
author Joakim Larsson Edström <joakimlarsson42@gmail.com>2019-10-30 00:27:48 +0100
committer ajrhacker <ajrhacker@users.noreply.github.com>2019-10-29 19:27:48 -0400
commit58c86eb73cd140a574ba12b0084bf77c11a81386 (patch)
treec8690b94d016f1e27f011c5fa3bbb5c68ae7871d /src/devices/machine
parentcebd828fcd1a85c79bc2b031b93891fd22f28865 (diff)
i8251a initilization changed (#5825)
* i8251.cpp: required initial state to enable receiver of a 8251a and also to avoid sending start bit to diserial on reset and get framing error * eispc_kb.cpp: removed need for scheduler abuse as problem is fixed by correcting the init of the i8251 USART on host side instead * eispc.cpp: removed an obsolete TODO
Diffstat (limited to 'src/devices/machine')
-rw-r--r--src/devices/machine/i8251.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/i8251.cpp b/src/devices/machine/i8251.cpp
index 5c1638acffd..2ef674ec1c0 100644
--- a/src/devices/machine/i8251.cpp
+++ b/src/devices/machine/i8251.cpp
@@ -67,7 +67,7 @@ i8251_device::i8251_device(
m_syndet_handler(*this),
m_cts(1),
m_dsr(1),
- m_rxd(0),
+ m_rxd(1),
m_rxc(0),
m_txc(0)
{