From 52bbb15193c1109a407a5880be6dcb8ccaccd820 Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Mon, 7 Jan 2013 04:39:01 +0000 Subject: [PATCH] diserial: correct uninitialized data bug where the first character transmitted would sometimes fail to synch. [R. Belmont] --- src/emu/diserial.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emu/diserial.c b/src/emu/diserial.c index e830e1056b1..f74700bfcb7 100644 --- a/src/emu/diserial.c +++ b/src/emu/diserial.c @@ -42,6 +42,7 @@ device_serial_interface::device_serial_interface(const machine_config &mconfig, m_tra_baud = 0; m_rcv_baud = 0; m_tra_flags = 0; + m_rcv_register_data = 0x8000; } device_serial_interface::~device_serial_interface()