diff options
Diffstat (limited to 'src/mame/drivers/mystston.cpp')
-rw-r--r-- | src/mame/drivers/mystston.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/mystston.cpp b/src/mame/drivers/mystston.cpp index 0c641e2cef8..f5825eb0468 100644 --- a/src/mame/drivers/mystston.cpp +++ b/src/mame/drivers/mystston.cpp @@ -195,8 +195,8 @@ INPUT_PORTS_END MACHINE_CONFIG_START(mystston_state::mystston) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", M6502, CPU_CLOCK) - MCFG_CPU_PROGRAM_MAP(main_map) + MCFG_DEVICE_ADD("maincpu", M6502, CPU_CLOCK) + MCFG_DEVICE_PROGRAM_MAP(main_map) /* video hardware */ mystston_video(config); @@ -204,10 +204,10 @@ MACHINE_CONFIG_START(mystston_state::mystston) /* audio hardware */ MCFG_SPEAKER_STANDARD_MONO("mono") - MCFG_SOUND_ADD("ay1", AY8910, AY8910_CLOCK) + MCFG_DEVICE_ADD("ay1", AY8910, AY8910_CLOCK) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.30) - MCFG_SOUND_ADD("ay2", AY8910, AY8910_CLOCK) + MCFG_DEVICE_ADD("ay2", AY8910, AY8910_CLOCK) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.30) MACHINE_CONFIG_END |