diff options
Diffstat (limited to 'src/mame/drivers/popobear.cpp')
-rw-r--r-- | src/mame/drivers/popobear.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/popobear.cpp b/src/mame/drivers/popobear.cpp index d4562ded0b7..077b1116154 100644 --- a/src/mame/drivers/popobear.cpp +++ b/src/mame/drivers/popobear.cpp @@ -640,11 +640,11 @@ TIMER_DEVICE_CALLBACK_MEMBER(popobear_state::irq) } MACHINE_CONFIG_START(popobear_state::popobear) - MCFG_CPU_ADD("maincpu", M68000, XTAL(42'000'000)/4) // XTAL CORRECT, DIVISOR GUESSED - MCFG_CPU_PROGRAM_MAP(popobear_mem) + MCFG_DEVICE_ADD("maincpu", M68000, XTAL(42'000'000)/4) // XTAL CORRECT, DIVISOR GUESSED + MCFG_DEVICE_PROGRAM_MAP(popobear_mem) // levels 2,3,5 look interesting - //MCFG_CPU_VBLANK_INT_DRIVER("screen", popobear_state, irq5_line_assert) - //MCFG_CPU_PERIODIC_INT_DRIVER(popobear_state, irq2_line_assert, 120) + //MCFG_DEVICE_VBLANK_INT_DRIVER("screen", popobear_state, irq5_line_assert) + //MCFG_DEVICE_PERIODIC_INT_DRIVER(popobear_state, irq2_line_assert, 120) MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", popobear_state, irq, "screen", 0, 1) MCFG_SCREEN_ADD("screen", RASTER) @@ -663,7 +663,7 @@ MACHINE_CONFIG_START(popobear_state::popobear) MCFG_GFXDECODE_ADD("gfxdecode", "palette", popobear) - MCFG_SOUND_ADD("ymsnd", YM2413, XTAL(42'000'000)/16) // XTAL CORRECT, DIVISOR GUESSED + MCFG_DEVICE_ADD("ymsnd", YM2413, XTAL(42'000'000)/16) // XTAL CORRECT, DIVISOR GUESSED MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0) MCFG_OKIM6295_ADD("oki", XTAL(42'000'000)/32, PIN7_LOW) // XTAL CORRECT, DIVISOR GUESSED |