summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/opwolf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/opwolf.c')
-rw-r--r--src/mame/drivers/opwolf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/opwolf.c b/src/mame/drivers/opwolf.c
index 5d521aabf18..4ca2c2cf17e 100644
--- a/src/mame/drivers/opwolf.c
+++ b/src/mame/drivers/opwolf.c
@@ -735,7 +735,7 @@ static MACHINE_CONFIG_START( opwolf, opwolf_state )
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M68000, CPU_CLOCK ) /* 8 MHz */
MCFG_CPU_PROGRAM_MAP(opwolf_map)
- MCFG_CPU_VBLANK_INT("screen", irq5_line_hold)
+ MCFG_CPU_VBLANK_INT_DRIVER("screen", opwolf_state, irq5_line_hold)
MCFG_CPU_ADD("audiocpu", Z80, SOUND_CPU_CLOCK ) /* 4 MHz */
MCFG_CPU_PROGRAM_MAP(opwolf_sound_z80_map)
@@ -785,14 +785,14 @@ static MACHINE_CONFIG_START( opwolfb, opwolf_state ) /* OSC clocks unknown for t
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M68000, CPU_CLOCK ) /* 8 MHz ??? */
MCFG_CPU_PROGRAM_MAP(opwolfb_map)
- MCFG_CPU_VBLANK_INT("screen", irq5_line_hold)
+ MCFG_CPU_VBLANK_INT_DRIVER("screen", opwolf_state, irq5_line_hold)
MCFG_CPU_ADD("audiocpu", Z80, SOUND_CPU_CLOCK ) /* 4 MHz ??? */
MCFG_CPU_PROGRAM_MAP(opwolf_sound_z80_map)
MCFG_CPU_ADD("sub", Z80, SOUND_CPU_CLOCK ) /* 4 MHz ??? */
MCFG_CPU_PROGRAM_MAP(opwolfb_sub_z80_map)
- MCFG_CPU_VBLANK_INT("screen", irq0_line_hold)
+ MCFG_CPU_VBLANK_INT_DRIVER("screen", opwolf_state, irq0_line_hold)
MCFG_QUANTUM_TIME(attotime::from_hz(600)) /* 10 CPU slices per frame - enough for the sound CPU to read all commands */