mirror of
https://github.com/holub/mame
synced 2025-05-29 09:03:08 +03:00
(MESS) fixed uninitialized variables in src/mess/drivers/abc80x.c (nw)
This commit is contained in:
parent
e191f84318
commit
8905774f11
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user