fixed usage of uninitialized members in pic8259_device (nw)

This commit is contained in:
Oliver Stöneberg 2014-04-27 14:10:54 +00:00
parent fa83233e8e
commit 8825f10c43

View File

@ -445,5 +445,8 @@ pic8259_device::pic8259_device(const machine_config &mconfig, const char *tag, d
, m_out_int_func(*this)
, m_sp_en_func(*this)
, m_read_slave_ack_func(*this)
, m_irr(0)
, m_irq_lines(0)
, m_level_trig_mode(0)
{
}