summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/abc80x.c
diff options
context:
space:
mode:
author Oliver Stöneberg <firewave@users.noreply.github.com>2013-02-17 18:49:15 +0000
committer Oliver Stöneberg <firewave@users.noreply.github.com>2013-02-17 18:49:15 +0000
commit8905774f11bb03bdb5c0f72a099831b09f425e7f (patch)
treeef22a58f502b4ff1d90c2af55aa02c4d5e56489e /src/mess/drivers/abc80x.c
parente191f84318454d207e2999db0505a7c5e3c9491a (diff)
(MESS) fixed uninitialized variables in src/mess/drivers/abc80x.c (nw)
Diffstat (limited to 'src/mess/drivers/abc80x.c')
-rw-r--r--src/mess/drivers/abc80x.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mess/drivers/abc80x.c b/src/mess/drivers/abc80x.c
index 1a104c08e73..e1668e08fdd 100644
--- a/src/mess/drivers/abc80x.c
+++ b/src/mess/drivers/abc80x.c
@@ -1035,6 +1035,8 @@ void abc800_state::machine_reset()
// 50/60 Hz
m_dart->cts_w(1, 0); // 0 = 50Hz, 1 = 60Hz
+
+ m_dfd_in = 0;
}
@@ -1091,6 +1093,8 @@ void abc802_state::machine_reset()
// 50/60 Hz
m_dart->cts_w(1, BIT(config, 3)); // 0 = 50Hz, 1 = 60Hz
+
+ m_dfd_in = 0;
}
@@ -1170,6 +1174,8 @@ void abc806_state::machine_reset()
// 50/60 Hz
m_dart->cts_w(1, 0); // 0 = 50Hz, 1 = 60Hz
+
+ m_dfd_in = 0;
}