mirror of
https://github.com/holub/mame
synced 2025-05-29 17:13:05 +03:00
(MESS) fixed uninitialized memory in src/mess/drivers/fm7.c (nw)
This commit is contained in:
parent
3a40e3bbec
commit
5a03cd5301
@ -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 =
|
||||
|
Loading…
Reference in New Issue
Block a user