summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/segas16a.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2019-02-22 18:18:42 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2019-02-22 18:18:42 +0100
commit6aa928a094a82c8b79dce199bdac8076dfc0321c (patch)
treed08d3fe54cb4e067e83087ac70f127d66d2c1dba /src/mame/drivers/segas16a.cpp
parent23c11c7cb4e3bdeb0ec7f003239e573bc228ef4a (diff)
mame\drivers: removed most MCFG and MACHINE_CONFIG macros from the rest of the drivers starting with s (nw)
Diffstat (limited to 'src/mame/drivers/segas16a.cpp')
-rw-r--r--src/mame/drivers/segas16a.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/segas16a.cpp b/src/mame/drivers/segas16a.cpp
index 4472fd2398e..a9f15030879 100644
--- a/src/mame/drivers/segas16a.cpp
+++ b/src/mame/drivers/segas16a.cpp
@@ -2095,15 +2095,15 @@ void segas16a_state::system16a_no7751p(machine_config &config)
}
/*
-static MACHINE_CONFIG_START( system16a_i8751_no7751 )
+void segas16a_state::system16a_i8751_no7751(machine_config &config)
+{
system16a_i8751(config);
config.device_remove("n7751");
config.device_remove("dac");
config.device_remove("vref");
- MCFG_DEVICE_REPLACE("ymsnd", YM2151, 4000000)
- MCFG_SOUND_ROUTE(ALL_OUTPUTS, "speaker", 1.0)
-MACHINE_CONFIG_END
+ YM2151(config.replace(), "ymsnd", 4000000).add_route(ALL_OUTPUTS, "speaker", 1.0);
+}
*/
void segas16a_state::system16a_fd1089a_no7751(machine_config &config)