From 8918b9a8db92e1ba960871b407ac3d1d7ca34554 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miodrag=20Milanovi=C4=87?= Date: Thu, 5 May 2022 15:51:08 +0200 Subject: acia6850: initialize receive section (#9694) --- src/devices/machine/6850acia.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/devices/machine/6850acia.cpp b/src/devices/machine/6850acia.cpp index d428851ad8f..364fcfdfc92 100644 --- a/src/devices/machine/6850acia.cpp +++ b/src/devices/machine/6850acia.cpp @@ -97,6 +97,8 @@ acia6850_device::acia6850_device(const machine_config &mconfig, device_type type , m_tx_irq_enable(false) , m_rxc(0) , m_rxd(1) + , m_rx_state(0) + , m_rx_counter(0) , m_rx_irq_enable(false) { } -- cgit v1.2.3