summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/astrafr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/astrafr.cpp')
-rw-r--r--src/mame/drivers/astrafr.cpp21
1 files changed, 14 insertions, 7 deletions
diff --git a/src/mame/drivers/astrafr.cpp b/src/mame/drivers/astrafr.cpp
index 7c335303b37..39ab2e11ed6 100644
--- a/src/mame/drivers/astrafr.cpp
+++ b/src/mame/drivers/astrafr.cpp
@@ -313,11 +313,13 @@ MACHINE_CONFIG_START(astrafr_state::astrafr_dual)
MCFG_MACHINE_START_OVERRIDE(astrafr_state, astra_common )
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(astrafr_state::astrafr_dual_2e, astrafr_dual)
+MACHINE_CONFIG_START(astrafr_state::astrafr_dual_2e)
+ astrafr_dual(config);
MCFG_MACHINE_START_OVERRIDE(astrafr_state, astra_2e )
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(astrafr_state::astrafr_dual_37, astrafr_dual)
+MACHINE_CONFIG_START(astrafr_state::astrafr_dual_37)
+ astrafr_dual(config);
MCFG_MACHINE_START_OVERRIDE(astrafr_state, astra_37 )
MACHINE_CONFIG_END
@@ -329,7 +331,8 @@ MACHINE_CONFIG_START(astrafr_state::astrafr_dual_alt)
MCFG_CPU_PROGRAM_MAP(astrafr_slave_map)
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(astrafr_state::astrafr_dual_alt_37, astrafr_dual_alt)
+MACHINE_CONFIG_START(astrafr_state::astrafr_dual_alt_37)
+ astrafr_dual_alt(config);
MCFG_MACHINE_START_OVERRIDE(astrafr_state, astra_37 )
MACHINE_CONFIG_END
@@ -341,11 +344,13 @@ MACHINE_CONFIG_START(astrafr_state::astra_single)
MCFG_MACHINE_START_OVERRIDE(astrafr_state, astra_common )
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(astrafr_state::astra_single_37, astra_single)
+MACHINE_CONFIG_START(astrafr_state::astra_single_37)
+ astra_single(config);
MCFG_MACHINE_START_OVERRIDE(astrafr_state, astra_37 )
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(astrafr_state::astra_single_2e, astra_single)
+MACHINE_CONFIG_START(astrafr_state::astra_single_2e)
+ astra_single(config);
MCFG_MACHINE_START_OVERRIDE(astrafr_state, astra_2e )
MACHINE_CONFIG_END
@@ -364,11 +369,13 @@ MACHINE_CONFIG_START(astrafr_state::astra_single_alt)
MCFG_MACHINE_START_OVERRIDE(astrafr_state, astra_common )
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(astrafr_state::astra_single_alt_57, astra_single_alt)
+MACHINE_CONFIG_START(astrafr_state::astra_single_alt_57)
+ astra_single_alt(config);
MCFG_MACHINE_START_OVERRIDE(astrafr_state, astra_57 )
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(astrafr_state::astra_single_alt_37, astra_single_alt)
+MACHINE_CONFIG_START(astrafr_state::astra_single_alt_37)
+ astra_single_alt(config);
MCFG_MACHINE_START_OVERRIDE(astrafr_state, astra_37 )
MACHINE_CONFIG_END