diff options
Diffstat (limited to 'src/mame/drivers/powerbal.cpp')
-rw-r--r-- | src/mame/drivers/powerbal.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/drivers/powerbal.cpp b/src/mame/drivers/powerbal.cpp index 35d6c043958..6bac22c65d3 100644 --- a/src/mame/drivers/powerbal.cpp +++ b/src/mame/drivers/powerbal.cpp @@ -628,9 +628,9 @@ MACHINE_RESET_MEMBER(powerbal_state,powerbal) MACHINE_CONFIG_START(powerbal_state::powerbal) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", M68000, 12000000) /* 12 MHz */ - MCFG_CPU_PROGRAM_MAP(powerbal_main_map) - MCFG_CPU_VBLANK_INT_DRIVER("screen", powerbal_state, irq2_line_hold) + MCFG_DEVICE_ADD("maincpu", M68000, 12000000) /* 12 MHz */ + MCFG_DEVICE_PROGRAM_MAP(powerbal_main_map) + MCFG_DEVICE_VBLANK_INT_DRIVER("screen", powerbal_state, irq2_line_hold) MCFG_MACHINE_START_OVERRIDE(powerbal_state,powerbal) MCFG_MACHINE_RESET_OVERRIDE(powerbal_state,powerbal) @@ -661,9 +661,9 @@ MACHINE_CONFIG_END MACHINE_CONFIG_START(powerbal_state::magicstk) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", M68000, 12000000) /* 12 MHz */ - MCFG_CPU_PROGRAM_MAP(magicstk_main_map) - MCFG_CPU_VBLANK_INT_DRIVER("screen", powerbal_state, irq2_line_hold) + MCFG_DEVICE_ADD("maincpu", M68000, 12000000) /* 12 MHz */ + MCFG_DEVICE_PROGRAM_MAP(magicstk_main_map) + MCFG_DEVICE_VBLANK_INT_DRIVER("screen", powerbal_state, irq2_line_hold) MCFG_EEPROM_SERIAL_93C46_ADD("eeprom") MCFG_EEPROM_SERIAL_DEFAULT_VALUE(0) @@ -698,9 +698,9 @@ MACHINE_CONFIG_START(powerbal_state::atombjt) powerbal(config); - MCFG_CPU_MODIFY("maincpu") - MCFG_CPU_PROGRAM_MAP(atombjt_map) - MCFG_CPU_VBLANK_INT_DRIVER("screen", powerbal_state, irq6_line_hold) + MCFG_DEVICE_MODIFY("maincpu") + MCFG_DEVICE_PROGRAM_MAP(atombjt_map) + MCFG_DEVICE_VBLANK_INT_DRIVER("screen", powerbal_state, irq6_line_hold) MCFG_SCREEN_MODIFY("screen") MCFG_SCREEN_SIZE(512, 256) \ |