mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
m72.cpp: Improve reset behavior (nw)
This commit is contained in:
parent
10a76b5e3d
commit
c65a869e57
@ -231,6 +231,10 @@ void m72_state::machine_reset()
|
||||
|
||||
m_scanline_timer->adjust(m_screen->time_until_pos(0));
|
||||
machine().scheduler().synchronize(timer_expired_delegate(FUNC(m72_state::synch_callback),this));
|
||||
|
||||
// Hold sound CPU in reset if main CPU has to upload the program into RAM
|
||||
if (m_soundram.found())
|
||||
m_soundcpu->set_input_line(INPUT_LINE_RESET, ASSERT_LINE);
|
||||
}
|
||||
|
||||
MACHINE_RESET_MEMBER(m72_state,kengo)
|
||||
|
Loading…
Reference in New Issue
Block a user