fixed uninitialized variable in src/emu/machine/msm58321.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-22 21:08:40 +00:00
parent 3fdb37bdd9
commit df3dec81ca

View File

@ -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)
: 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++)
m_reg[i] = 0;