summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/astrohome.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/astrohome.cpp')
-rw-r--r--src/mame/drivers/astrohome.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/astrohome.cpp b/src/mame/drivers/astrohome.cpp
index e12c1ea1886..a806fb5f778 100644
--- a/src/mame/drivers/astrohome.cpp
+++ b/src/mame/drivers/astrohome.cpp
@@ -199,9 +199,9 @@ static void astrocade_exp(device_slot_interface &device)
MACHINE_CONFIG_START(astrocde_mess_state::astrocde)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", Z80, ASTROCADE_CLOCK/4) /* 1.789 MHz */
- MCFG_CPU_PROGRAM_MAP(astrocade_mem)
- MCFG_CPU_IO_MAP(astrocade_io)
+ MCFG_DEVICE_ADD("maincpu", Z80, ASTROCADE_CLOCK/4) /* 1.789 MHz */
+ MCFG_DEVICE_PROGRAM_MAP(astrocade_mem)
+ MCFG_DEVICE_IO_MAP(astrocade_io)
MCFG_MACHINE_START_OVERRIDE(astrocde_mess_state, astrocde)
@@ -216,7 +216,7 @@ MACHINE_CONFIG_START(astrocde_mess_state::astrocde)
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("astrocade1", ASTROCADE, ASTROCADE_CLOCK/4)
+ MCFG_DEVICE_ADD("astrocade1", ASTROCADE, ASTROCADE_CLOCK/4)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00)
/* expansion port */