summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/thepit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/thepit.cpp')
-rw-r--r--src/mame/drivers/thepit.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/mame/drivers/thepit.cpp b/src/mame/drivers/thepit.cpp
index 0432ff13866..f014168a1ab 100644
--- a/src/mame/drivers/thepit.cpp
+++ b/src/mame/drivers/thepit.cpp
@@ -755,12 +755,14 @@ MACHINE_CONFIG_START(thepit_state::thepit)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25)
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(thepit_state::fitter, thepit)
+MACHINE_CONFIG_START(thepit_state::fitter)
+ thepit(config);
MCFG_DEVICE_MODIFY("mainlatch") // IC42
MCFG_ADDRESSABLE_LATCH_Q2_OUT_CB(WRITELINE(thepit_state, coin_lockout_w))
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(thepit_state::desertdn, fitter)
+MACHINE_CONFIG_START(thepit_state::desertdn)
+ fitter(config);
/* basic machine hardware */
MCFG_CPU_MODIFY("maincpu")
@@ -773,7 +775,8 @@ MACHINE_CONFIG_DERIVED(thepit_state::desertdn, fitter)
MCFG_GFXDECODE_MODIFY("gfxdecode", intrepid)
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(thepit_state::intrepid, fitter)
+MACHINE_CONFIG_START(thepit_state::intrepid)
+ fitter(config);
/* basic machine hardware */
MCFG_CPU_MODIFY("maincpu")
@@ -787,7 +790,8 @@ MACHINE_CONFIG_DERIVED(thepit_state::intrepid, fitter)
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(thepit_state::suprmous, intrepid)
+MACHINE_CONFIG_START(thepit_state::suprmous)
+ intrepid(config);
/* basic machine hardware */