mirror of
https://github.com/holub/mame
synced 2025-04-28 11:11:48 +03:00
one more (nw)
This commit is contained in:
parent
3f9cbe01c5
commit
339ae40d84
@ -762,15 +762,15 @@ WRITE_LINE_MEMBER(saturn_state::scsp_irq)
|
|||||||
if (state > 0)
|
if (state > 0)
|
||||||
{
|
{
|
||||||
m_scsp_last_line = state;
|
m_scsp_last_line = state;
|
||||||
machine().device("audiocpu")->execute().set_input_line(state, ASSERT_LINE);
|
m_audiocpu->set_input_line(state, ASSERT_LINE);
|
||||||
}
|
}
|
||||||
else if (state < 0)
|
else if (state < 0)
|
||||||
{
|
{
|
||||||
machine().device("audiocpu")->execute().set_input_line(-state, CLEAR_LINE);
|
m_audiocpu->set_input_line(-state, CLEAR_LINE);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
machine().device("audiocpu")->execute().set_input_line(m_scsp_last_line, CLEAR_LINE);
|
m_audiocpu->set_input_line(m_scsp_last_line, CLEAR_LINE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user