Previous 199869 Revisions Next

r22691 Tuesday 7th May, 2013 at 09:29:16 UTC by Robbbert
(MESS) D6800: fixed width of interrupt pulse; many more games start up now, and sound works in the games.
[src/mess/drivers]d6800.c

trunk/src/mess/drivers/d6800.c
r22690r22691
204204TIMER_DEVICE_CALLBACK_MEMBER(d6800_state::d6800_p)
205205{
206206   m_rtc++;
207   m_maincpu->set_input_line(M6800_IRQ_LINE, (m_rtc > 0xf8) ? ASSERT_LINE : CLEAR_LINE);
207   m_maincpu->set_input_line(M6800_IRQ_LINE, (m_rtc) ? CLEAR_LINE : ASSERT_LINE);
208208}
209209
210210

Previous 199869 Revisions Next


© 1997-2024 The MAME Team