Clear Z80 DART interrupts at constructor time. [Curt Coder]

This commit is contained in:
Curt Coder 2010-08-20 16:15:41 +00:00
parent 4512bc3122
commit b5fabb049d

View File

@ -223,6 +223,8 @@ z80dart_device::z80dart_device(running_machine &_machine, const z80dart_device_c
device_z80daisy_interface(_machine, config, *this),
m_config(config)
{
for (int i = 0; i < 8; i++)
m_int_state[i] = 0;
}