summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/europc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/europc.cpp')
-rw-r--r--src/mame/drivers/europc.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/europc.cpp b/src/mame/drivers/europc.cpp
index 6dde362ff24..ee390c6ff53 100644
--- a/src/mame/drivers/europc.cpp
+++ b/src/mame/drivers/europc.cpp
@@ -548,13 +548,15 @@ MACHINE_CONFIG_START(europc_pc_state::europc)
MACHINE_CONFIG_END
//Euro PC II
-MACHINE_CONFIG_DERIVED(europc_pc_state::europc2, europc)
+MACHINE_CONFIG_START(europc_pc_state::europc2)
+ europc(config);
MCFG_DEVICE_MODIFY(RAM_TAG)
MCFG_RAM_DEFAULT_SIZE("768K") // could be configured by the BIOS as 640K, 640K+128K EMS or 512K+256K EMS
MACHINE_CONFIG_END
//Euro XT
-MACHINE_CONFIG_DERIVED(europc_pc_state::euroxt, europc)
+MACHINE_CONFIG_START(europc_pc_state::euroxt)
+ europc(config);
MCFG_DEVICE_MODIFY(RAM_TAG)
MCFG_RAM_DEFAULT_SIZE("768K")
MCFG_DEVICE_MODIFY("isa2")