fixed usage of uninitialized member in abc1600_mac_device (nw)

This commit is contained in:
Oliver Stöneberg 2014-04-23 17:57:55 +00:00
parent a776b92b54
commit ccaa9b60d8

View File

@ -114,7 +114,8 @@ abc1600_mac_device::abc1600_mac_device(const machine_config &mconfig, const char
m_space_config("program", ENDIANNESS_LITTLE, 8, 22, 0, *ADDRESS_MAP_NAME(program_map)),
m_rom(*this, "boot"),
m_segment_ram(*this, "segment_ram"),
m_page_ram(*this, "page_ram")
m_page_ram(*this, "page_ram"),
m_task(0)
{
}