diff options
Diffstat (limited to 'src/mame/drivers/glasgow.cpp')
-rw-r--r-- | src/mame/drivers/glasgow.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/glasgow.cpp b/src/mame/drivers/glasgow.cpp index 2671902cdf3..3d0cd7ec51a 100644 --- a/src/mame/drivers/glasgow.cpp +++ b/src/mame/drivers/glasgow.cpp @@ -313,8 +313,8 @@ INPUT_PORTS_END MACHINE_CONFIG_START(glasgow_state::glasgow) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", M68000, 12_MHz_XTAL) - MCFG_CPU_PROGRAM_MAP(glasgow_mem) + MCFG_DEVICE_ADD("maincpu", M68000, 12_MHz_XTAL) + MCFG_DEVICE_PROGRAM_MAP(glasgow_mem) MCFG_MEPHISTO_SENSORS_BOARD_ADD("board") @@ -322,7 +322,7 @@ MACHINE_CONFIG_START(glasgow_state::glasgow) MCFG_DEFAULT_LAYOUT(layout_glasgow) MCFG_SPEAKER_STANDARD_MONO("mono") - MCFG_SOUND_ADD("beeper", BEEP, 44) + MCFG_DEVICE_ADD("beeper", BEEP, 44) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50) MCFG_TIMER_DRIVER_ADD_PERIODIC("nmi_timer", glasgow_state, update_nmi, attotime::from_hz(50)) @@ -332,16 +332,16 @@ MACHINE_CONFIG_START(amsterd_state::amsterd) glasgow(config); /* basic machine hardware */ - MCFG_CPU_MODIFY("maincpu") - MCFG_CPU_PROGRAM_MAP(amsterd_mem) + MCFG_DEVICE_MODIFY("maincpu") + MCFG_DEVICE_PROGRAM_MAP(amsterd_mem) MACHINE_CONFIG_END MACHINE_CONFIG_START(amsterd_state::dallas32) glasgow(config); /* basic machine hardware */ - MCFG_CPU_REPLACE("maincpu", M68020, 14_MHz_XTAL) - MCFG_CPU_PROGRAM_MAP(dallas32_mem) + MCFG_DEVICE_REPLACE("maincpu", M68020, 14_MHz_XTAL) + MCFG_DEVICE_PROGRAM_MAP(dallas32_mem) MCFG_DEVICE_REMOVE("nmi_timer") MCFG_TIMER_DRIVER_ADD_PERIODIC("nmi_timer", amsterd_state, update_nmi32, attotime::from_hz(50)) |