summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/phc25.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/phc25.cpp')
-rw-r--r--src/mame/drivers/phc25.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/phc25.cpp b/src/mame/drivers/phc25.cpp
index dfc920f8540..777634b58ed 100644
--- a/src/mame/drivers/phc25.cpp
+++ b/src/mame/drivers/phc25.cpp
@@ -340,7 +340,8 @@ MACHINE_CONFIG_START(phc25_state::phc25)
MCFG_SOFTWARE_LIST_ADD("cass_list", "phc25_cass")
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(phc25_state::pal, phc25)
+MACHINE_CONFIG_START(phc25_state::pal)
+ phc25(config);
/* video hardware */
MCFG_SCREEN_MC6847_PAL_ADD(SCREEN_TAG, MC6847_TAG)
@@ -352,7 +353,8 @@ MACHINE_CONFIG_DERIVED(phc25_state::pal, phc25)
// other lines not connected
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(phc25_state::ntsc, phc25)
+MACHINE_CONFIG_START(phc25_state::ntsc)
+ phc25(config);
/* video hardware */
MCFG_SCREEN_MC6847_NTSC_ADD(SCREEN_TAG, MC6847_TAG)