mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
fixed usage of uninitialized member in c8050_device (nw)
This commit is contained in:
parent
ec5d1d8d65
commit
dddee58be1
@ -1105,6 +1105,7 @@ c8050_device::c8050_device(const machine_config &mconfig, device_type type, cons
|
||||
m_rfdo(1),
|
||||
m_daco(1),
|
||||
m_atna(1),
|
||||
m_ifc(0),
|
||||
m_ds(-1),
|
||||
m_bit_count(0),
|
||||
m_sr(0),
|
||||
@ -1144,6 +1145,7 @@ c8050_device::c8050_device(const machine_config &mconfig, const char *tag, devic
|
||||
m_rfdo(1),
|
||||
m_daco(1),
|
||||
m_atna(1),
|
||||
m_ifc(0),
|
||||
m_ds(-1),
|
||||
m_bit_count(0),
|
||||
m_sr(0),
|
||||
|
Loading…
Reference in New Issue
Block a user