(MESS) fixed uninitialized memory in src/mess/drivers/fm7.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-03-09 09:32:09 +00:00
parent 3a40e3bbec
commit 5a03cd5301

View File

@ -1963,6 +1963,8 @@ void fm7_state::machine_reset()
// Probably best to halt the 8088, I'm pretty sure it and the main 6809 should not be running at the same time
machine().device("x86")->execute().set_input_line(INPUT_LINE_HALT,ASSERT_LINE);
}
memset(m_video_ram, 0, sizeof(UINT8) * 0x18000);
}
static const wd17xx_interface fm7_mb8877a_interface =