mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
update prev commit
This commit is contained in:
parent
04c9f4b05e
commit
f6dbaaafce
@ -474,7 +474,7 @@
|
||||
|
||||
void neogeo_state::adjust_display_position_interrupt_timer()
|
||||
{
|
||||
attotime period = attotime::from_ticks(m_display_counter + 1, NEOGEO_PIXEL_CLOCK);
|
||||
attotime period = attotime::from_ticks((UINT64)m_display_counter + 1, NEOGEO_PIXEL_CLOCK);
|
||||
if (LOG_VIDEO_SYSTEM) logerror("adjust_display_position_interrupt_timer current y: %02x current x: %02x target y: %x target x: %x\n", m_screen->vpos(), m_screen->hpos(), (m_display_counter + 1) / NEOGEO_HTOTAL, (m_display_counter + 1) % NEOGEO_HTOTAL);
|
||||
|
||||
m_display_position_interrupt_timer->adjust(period);
|
||||
@ -599,7 +599,7 @@ void neogeo_state::start_interrupt_timers()
|
||||
|
||||
void neogeo_state::audio_cpu_check_nmi()
|
||||
{
|
||||
m_audiocpu->set_input_line(INPUT_LINE_NMI, (m_audio_cpu_nmi_enabled && m_audio_cpu_nmi_pending) ? ASSERT_LINE : CLEAR_LINE );
|
||||
m_audiocpu->set_input_line(INPUT_LINE_NMI, (m_audio_cpu_nmi_enabled && m_audio_cpu_nmi_pending) ? ASSERT_LINE : CLEAR_LINE);
|
||||
}
|
||||
|
||||
WRITE8_MEMBER(neogeo_state::audio_cpu_enable_nmi_w)
|
||||
|
Loading…
Reference in New Issue
Block a user