summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/adp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/adp.cpp')
-rw-r--r--src/mame/drivers/adp.cpp18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/mame/drivers/adp.cpp b/src/mame/drivers/adp.cpp
index edfb981c915..0269c40f580 100644
--- a/src/mame/drivers/adp.cpp
+++ b/src/mame/drivers/adp.cpp
@@ -199,6 +199,12 @@ public:
IRQ_CALLBACK_MEMBER(duart_iack_handler);
//INTERRUPT_GEN_MEMBER(adp_int);
void skattva_nvram_init(nvram_device &nvram, void *base, size_t size);
+ void skattv(machine_config &config);
+ void quickjac(machine_config &config);
+ void fashiong(machine_config &config);
+ void fstation(machine_config &config);
+ void funland(machine_config &config);
+ void skattva(machine_config &config);
};
void adp_state::skattva_nvram_init(nvram_device &nvram, void *base, size_t size)
@@ -525,7 +531,7 @@ static ADDRESS_MAP_START( fstation_hd63484_map, 0, 16, adp_state )
AM_RANGE(0x80000, 0xfffff) AM_RAM
ADDRESS_MAP_END
-static MACHINE_CONFIG_START( quickjac )
+MACHINE_CONFIG_START(adp_state::quickjac)
MCFG_CPU_ADD("maincpu", M68000, 8000000)
MCFG_CPU_PROGRAM_MAP(quickjac_mem)
@@ -567,19 +573,19 @@ static MACHINE_CONFIG_START( quickjac )
MACHINE_CONFIG_END
-static MACHINE_CONFIG_DERIVED( skattv, quickjac )
+MACHINE_CONFIG_DERIVED(adp_state::skattv, quickjac)
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_PROGRAM_MAP(skattv_mem)
MACHINE_CONFIG_END
-static MACHINE_CONFIG_DERIVED( skattva, quickjac )
+MACHINE_CONFIG_DERIVED(adp_state::skattva, quickjac)
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_PROGRAM_MAP(skattva_mem)
MCFG_NVRAM_REPLACE_CUSTOM_DRIVER("nvram", adp_state, skattva_nvram_init)
MACHINE_CONFIG_END
-static MACHINE_CONFIG_DERIVED( fashiong, skattv )
+MACHINE_CONFIG_DERIVED(adp_state::fashiong, skattv)
MCFG_DEVICE_MODIFY("acrtc")
MCFG_HD63484_ADDRESS_MAP(fashiong_hd63484_map)
MACHINE_CONFIG_END
@@ -588,7 +594,7 @@ static ADDRESS_MAP_START( ramdac_map, 0, 8, adp_state )
AM_RANGE(0x000, 0x3ff) AM_DEVREADWRITE("ramdac",ramdac_device,ramdac_pal_r,ramdac_rgb666_w)
ADDRESS_MAP_END
-static MACHINE_CONFIG_DERIVED( funland, quickjac )
+MACHINE_CONFIG_DERIVED(adp_state::funland, quickjac)
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_PROGRAM_MAP(funland_mem)
@@ -600,7 +606,7 @@ static MACHINE_CONFIG_DERIVED( funland, quickjac )
MCFG_HD63484_ADDRESS_MAP(fstation_hd63484_map)
MACHINE_CONFIG_END
-static MACHINE_CONFIG_DERIVED( fstation, funland )
+MACHINE_CONFIG_DERIVED(adp_state::fstation, funland)
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_PROGRAM_MAP(fstation_mem)