summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mystston.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mystston.cpp')
-rw-r--r--src/mame/drivers/mystston.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mame/drivers/mystston.cpp b/src/mame/drivers/mystston.cpp
index 31f4308c654..9c8ececd21d 100644
--- a/src/mame/drivers/mystston.cpp
+++ b/src/mame/drivers/mystston.cpp
@@ -203,11 +203,9 @@ MACHINE_CONFIG_START(mystston_state::mystston)
/* audio hardware */
SPEAKER(config, "mono").front_center();
- MCFG_DEVICE_ADD("ay1", AY8910, AY8910_CLOCK)
- MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.30)
+ AY8910(config, m_ay8910[0], AY8910_CLOCK).add_route(ALL_OUTPUTS, "mono", 0.30);
- MCFG_DEVICE_ADD("ay2", AY8910, AY8910_CLOCK)
- MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.30)
+ AY8910(config, m_ay8910[1], AY8910_CLOCK).add_route(ALL_OUTPUTS, "mono", 0.30);
MACHINE_CONFIG_END