mirror of
https://github.com/holub/mame
synced 2025-04-26 18:23:08 +03:00
fixed uninitialized variable in src/emu/machine/msm58321.c (nw)
This commit is contained in:
parent
3fdb37bdd9
commit
df3dec81ca
@ -93,7 +93,8 @@ inline void msm58321_device::write_counter(int counter, int value)
|
|||||||
|
|
||||||
msm58321_device::msm58321_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
msm58321_device::msm58321_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||||
: device_t(mconfig, MSM58321, "MSM58321", tag, owner, clock),
|
: device_t(mconfig, MSM58321, "MSM58321", tag, owner, clock),
|
||||||
device_rtc_interface(mconfig, *this)
|
device_rtc_interface(mconfig, *this),
|
||||||
|
m_cs2(0)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < 13; i++)
|
for (int i = 0; i < 13; i++)
|
||||||
m_reg[i] = 0;
|
m_reg[i] = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user