From f4df51e5223578e206574234c0b8d1af300c3324 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Wed, 14 Feb 2018 22:40:47 +1100 Subject: (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. --- src/mame/drivers/europc.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/mame/drivers/europc.cpp') 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") -- cgit v1.2.3