summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/coolridr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/coolridr.cpp')
-rw-r--r--src/mame/drivers/coolridr.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/coolridr.cpp b/src/mame/drivers/coolridr.cpp
index a7e2a1c3c24..9ec0f730b73 100644
--- a/src/mame/drivers/coolridr.cpp
+++ b/src/mame/drivers/coolridr.cpp
@@ -537,6 +537,8 @@ public:
};
objcachemanager decode[2];
+ void aquastge(machine_config &config);
+ void coolridr(machine_config &config);
};
#define PRINT_BLIT_STUFF \
@@ -3687,7 +3689,7 @@ WRITE_LINE_MEMBER(coolridr_state::scsp2_to_sh1_irq)
#define MAIN_CLOCK XTAL_28_63636MHz
-static MACHINE_CONFIG_START( coolridr )
+MACHINE_CONFIG_START(coolridr_state::coolridr)
MCFG_CPU_ADD("maincpu", SH2, MAIN_CLOCK) // 28 mhz
MCFG_CPU_PROGRAM_MAP(system_h1_map)
MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", coolridr_state, system_h1_main, "screen", 0, 1)
@@ -3734,7 +3736,7 @@ static MACHINE_CONFIG_START( coolridr )
MCFG_SOUND_ROUTE(0, "rspeaker", 1.0)
MACHINE_CONFIG_END
-static MACHINE_CONFIG_DERIVED( aquastge, coolridr )
+MACHINE_CONFIG_DERIVED(coolridr_state::aquastge, coolridr)
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_PROGRAM_MAP(aquastge_h1_map)