summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mrdo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mrdo.cpp')
-rw-r--r--src/mame/drivers/mrdo.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/mrdo.cpp b/src/mame/drivers/mrdo.cpp
index e27d3fcf50d..5da9f1374df 100644
--- a/src/mame/drivers/mrdo.cpp
+++ b/src/mame/drivers/mrdo.cpp
@@ -174,9 +174,9 @@ GFXDECODE_END
MACHINE_CONFIG_START(mrdo_state::mrdo)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", Z80, MAIN_CLOCK/2) /* Verified */
- MCFG_CPU_PROGRAM_MAP(main_map)
- MCFG_CPU_VBLANK_INT_DRIVER("screen", mrdo_state, irq0_line_hold)
+ MCFG_DEVICE_ADD("maincpu", Z80, MAIN_CLOCK/2) /* Verified */
+ MCFG_DEVICE_PROGRAM_MAP(main_map)
+ MCFG_DEVICE_VBLANK_INT_DRIVER("screen", mrdo_state, irq0_line_hold)
/* video hardware */
MCFG_SCREEN_ADD("screen", RASTER)
@@ -192,10 +192,10 @@ MACHINE_CONFIG_START(mrdo_state::mrdo)
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("u8106_1", U8106, MAIN_CLOCK/2) /* sn76489-equivalent?, Verified */
+ MCFG_DEVICE_ADD("u8106_1", U8106, MAIN_CLOCK/2) /* sn76489-equivalent?, Verified */
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
- MCFG_SOUND_ADD("u8106_2", U8106, MAIN_CLOCK/2) /* sn76489-equivalent?, Verified */
+ MCFG_DEVICE_ADD("u8106_2", U8106, MAIN_CLOCK/2) /* sn76489-equivalent?, Verified */
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
MACHINE_CONFIG_END