summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/mos6551.c
diff options
context:
space:
mode:
author Oliver Stöneberg <firewave@users.noreply.github.com>2014-04-24 04:19:06 +0000
committer Oliver Stöneberg <firewave@users.noreply.github.com>2014-04-24 04:19:06 +0000
commitc45fffdb510211e400d8e2cdbc1696daefac55b8 (patch)
tree55467a154082fd369a84712a593f839c72293604 /src/emu/machine/mos6551.c
parent6e8ac206d29146cda6ae4d89cf3b1e62b79b5cf4 (diff)
fixed usage of uninitialized member in mos6551_device (nw)
Diffstat (limited to 'src/emu/machine/mos6551.c')
-rw-r--r--src/emu/machine/mos6551.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/machine/mos6551.c b/src/emu/machine/mos6551.c
index b11515f1544..7bb61735eec 100644
--- a/src/emu/machine/mos6551.c
+++ b/src/emu/machine/mos6551.c
@@ -23,6 +23,7 @@ mos6551_device::mos6551_device(const machine_config &mconfig, const char *tag, d
m_rxc_handler(*this),
m_rts_handler(*this),
m_dtr_handler(*this),
+ m_control(0),
m_irq(0),
m_txd(0),
m_rxc(0),