diff options
Diffstat (limited to 'src/mame/drivers/mole.cpp')
-rw-r--r-- | src/mame/drivers/mole.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/mole.cpp b/src/mame/drivers/mole.cpp index 46dc4281e2c..689f0fda35f 100644 --- a/src/mame/drivers/mole.cpp +++ b/src/mame/drivers/mole.cpp @@ -323,9 +323,9 @@ void mole_state::machine_reset() MACHINE_CONFIG_START(mole_state::mole) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", M6502, 4000000) // ??? - MCFG_CPU_PROGRAM_MAP(mole_map) - MCFG_CPU_VBLANK_INT_DRIVER("screen", mole_state, irq0_line_assert) + MCFG_DEVICE_ADD("maincpu", M6502, 4000000) // ??? + MCFG_DEVICE_PROGRAM_MAP(mole_map) + MCFG_DEVICE_VBLANK_INT_DRIVER("screen", mole_state, irq0_line_assert) /* video hardware */ MCFG_SCREEN_ADD("screen", RASTER) @@ -342,7 +342,7 @@ MACHINE_CONFIG_START(mole_state::mole) /* sound hardware */ MCFG_SPEAKER_STANDARD_MONO("mono") - MCFG_SOUND_ADD("aysnd", AY8910, 2000000) + MCFG_DEVICE_ADD("aysnd", AY8910, 2000000) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0) MACHINE_CONFIG_END |