fixed uninitialized members in src/emu/machine/cdp1871.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-20 19:24:42 +00:00
parent 8c341fc40e
commit 3f8b4d6ffd

View File

@ -98,7 +98,9 @@ cdp1871_device::cdp1871_device(const machine_config &mconfig, const char *tag, d
m_sense(0),
m_drive(0),
m_next_da(CLEAR_LINE),
m_next_rpt(CLEAR_LINE)
m_next_rpt(CLEAR_LINE),
m_da(0),
m_rpt(0)
{
}