summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/splash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/splash.cpp')
-rw-r--r--src/mame/drivers/splash.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/splash.cpp b/src/mame/drivers/splash.cpp
index 93dceb955fd..00e095f0aae 100644
--- a/src/mame/drivers/splash.cpp
+++ b/src/mame/drivers/splash.cpp
@@ -474,12 +474,12 @@ static GFXDECODE_START( gfx_splash )
GFXDECODE_END
-MACHINE_START_MEMBER(splash_state,splash)
+void splash_state::machine_start_splash()
{
save_item(NAME(m_adpcm_data));
}
-MACHINE_RESET_MEMBER(splash_state,splash)
+void splash_state::machine_reset_splash()
{
m_adpcm_data = 0;
m_ret = 0x100;
@@ -515,8 +515,8 @@ MACHINE_CONFIG_START(splash_state::splash)
MCFG_PALETTE_ADD("palette", 2048)
MCFG_PALETTE_FORMAT(xRRRRRGGGGGBBBBB)
- MCFG_MACHINE_START_OVERRIDE(splash_state, splash )
- MCFG_MACHINE_RESET_OVERRIDE(splash_state, splash )
+ set_machine_start_cb(config, driver_callback_delegate(&machine_start_splash, this));
+ set_machine_reset_cb(config, driver_callback_delegate(&machine_reset_splash, this));
/* sound hardware */
SPEAKER(config, "mono").front_center();
@@ -534,7 +534,7 @@ MACHINE_CONFIG_START(splash_state::splash)
MACHINE_CONFIG_END
-MACHINE_START_MEMBER(splash_state, roldfrog)
+void splash_state::machine_start_roldfrog()
{
save_item(NAME(m_ret));
save_item(NAME(m_vblank_irq));
@@ -578,8 +578,8 @@ MACHINE_CONFIG_START(splash_state::roldfrog)
MCFG_PALETTE_ADD("palette", 2048)
MCFG_PALETTE_FORMAT(xRRRRRGGGGGBBBBB)
- MCFG_MACHINE_START_OVERRIDE(splash_state, roldfrog )
- MCFG_MACHINE_RESET_OVERRIDE(splash_state, splash )
+ set_machine_start_cb(config, driver_callback_delegate(&machine_start_roldfrog, this));
+ set_machine_reset_cb(config, driver_callback_delegate(&machine_reset_splash, this));
/* sound hardware */
SPEAKER(config, "mono").front_center();