mirror of
https://github.com/holub/mame
synced 2025-04-25 01:40:16 +03:00
meyc8088: interrupt is auto cleared by INTA (nw)
This commit is contained in:
parent
d854ec06b1
commit
c059ad245f
@ -163,8 +163,9 @@ uint32_t meyc8088_state::screen_update_meyc8088(screen_device &screen, bitmap_in
|
||||
|
||||
WRITE_LINE_MEMBER(meyc8088_state::screen_vblank_meyc8088)
|
||||
{
|
||||
// INTR on LC255 (pulses at start and end of vblank), INTA hardwired to $20
|
||||
m_maincpu->pulse_input_line_and_vector(0, 0x20, 1);
|
||||
// LC255(200ns pulse) rising edge asserts INTR at start and end of vblank
|
||||
// INTA wired back to INTR to clear it, vector is hardwired to $20
|
||||
m_maincpu->set_input_line_and_vector(0, HOLD_LINE, 0x20);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user