diff options
Diffstat (limited to 'src/mame/drivers/badlandsbl.cpp')
-rw-r--r-- | src/mame/drivers/badlandsbl.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/badlandsbl.cpp b/src/mame/drivers/badlandsbl.cpp index 396c329d206..965c1449b1c 100644 --- a/src/mame/drivers/badlandsbl.cpp +++ b/src/mame/drivers/badlandsbl.cpp @@ -220,12 +220,12 @@ TIMER_DEVICE_CALLBACK_MEMBER(badlandsbl_state::bootleg_sound_scanline) MACHINE_CONFIG_START(badlandsbl_state::badlandsb) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", M68000, XTAL(28'000'000)/4) /* Divisor estimated */ - MCFG_CPU_PROGRAM_MAP(bootleg_map) - MCFG_CPU_VBLANK_INT_DRIVER("screen", badlandsbl_state, irq1_line_hold) //vblank_int) + MCFG_DEVICE_ADD("maincpu", M68000, XTAL(28'000'000)/4) /* Divisor estimated */ + MCFG_DEVICE_PROGRAM_MAP(bootleg_map) + MCFG_DEVICE_VBLANK_INT_DRIVER("screen", badlandsbl_state, irq1_line_hold) //vblank_int) - MCFG_CPU_ADD("audiocpu", Z80, XTAL(20'000'000)/12) /* Divisor estimated */ - MCFG_CPU_PROGRAM_MAP(bootleg_audio_map) + MCFG_DEVICE_ADD("audiocpu", Z80, XTAL(20'000'000)/12) /* Divisor estimated */ + MCFG_DEVICE_PROGRAM_MAP(bootleg_audio_map) MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", badlandsbl_state, bootleg_sound_scanline, "screen", 0, 1) // MCFG_QUANTUM_PERFECT_CPU("maincpu") |