summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/metlfrzr.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2019-10-16 18:01:03 +0200
committer hap <happppp@users.noreply.github.com>2019-10-16 18:01:19 +0200
commitae1aa998a37afcbc00bcc0ca6c3f3c2000958392 (patch)
treed37d17b0ad02c9988e02634b084c77afe731319f /src/mame/drivers/metlfrzr.cpp
parent39bde3e47364ada9e1f0d74c73a2053ae6df9b06 (diff)
mustache: game runs in IM1(no irq vector used), irq stays high during vblank, old regression from https://github.com/mamedev/mame/commit/0a7b50a0054aa8aa7218c5542f00cd4b6ec723dc (nw)
Diffstat (limited to 'src/mame/drivers/metlfrzr.cpp')
-rw-r--r--src/mame/drivers/metlfrzr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/metlfrzr.cpp b/src/mame/drivers/metlfrzr.cpp
index b436bdd6686..65fcaf95eac 100644
--- a/src/mame/drivers/metlfrzr.cpp
+++ b/src/mame/drivers/metlfrzr.cpp
@@ -359,11 +359,11 @@ TIMER_DEVICE_CALLBACK_MEMBER(metlfrzr_state::scanline)
int scanline = param;
if(scanline == 240) // vblank-out irq
- m_maincpu->set_input_line_and_vector(0, HOLD_LINE,0x10); /* Z80 - RST 10h */
+ m_maincpu->set_input_line_and_vector(0, HOLD_LINE,0xd7); /* Z80 - RST 10h */
// TODO: check this irq.
if(scanline == 0) // vblank-in irq
- m_maincpu->set_input_line_and_vector(0, HOLD_LINE,0x08); /* Z80 - RST 08h */
+ m_maincpu->set_input_line_and_vector(0, HOLD_LINE,0xcf); /* Z80 - RST 08h */
}
void metlfrzr_state::metlfrzr(machine_config &config)