diff options
author | 2018-02-14 22:40:47 +1100 | |
---|---|---|
committer | 2018-02-14 23:46:17 +1100 | |
commit | f4df51e5223578e206574234c0b8d1af300c3324 (patch) | |
tree | fd5c680c45baee30304a31723132444fe7359dfb /src/mame/drivers/exprraid.cpp | |
parent | 1bd974c2b4f1f8815065efd4f5fcc0443ae15d28 (diff) |
(nw) screw you macros and the horse you rode in on
There's no voodoo involved in derived machine configurations and
fragments any more. The macros were just obfuscating things at this
point.
Diffstat (limited to 'src/mame/drivers/exprraid.cpp')
-rw-r--r-- | src/mame/drivers/exprraid.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/exprraid.cpp b/src/mame/drivers/exprraid.cpp index b345595dda1..b89138e8d12 100644 --- a/src/mame/drivers/exprraid.cpp +++ b/src/mame/drivers/exprraid.cpp @@ -527,7 +527,8 @@ MACHINE_CONFIG_START(exprraid_state::exprraid) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.60) MACHINE_CONFIG_END -MACHINE_CONFIG_DERIVED(exprraid_state::exprboot, exprraid) +MACHINE_CONFIG_START(exprraid_state::exprboot) + exprraid(config); MCFG_CPU_REPLACE("maincpu", M6502, 1500000) /* 1.5 MHz ??? */ MCFG_CPU_PROGRAM_MAP(master_map) |