summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/actfancr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/actfancr.cpp')
-rw-r--r--src/mame/drivers/actfancr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/actfancr.cpp b/src/mame/drivers/actfancr.cpp
index 8ddbdff2a48..08e9c50d3f5 100644
--- a/src/mame/drivers/actfancr.cpp
+++ b/src/mame/drivers/actfancr.cpp
@@ -274,12 +274,12 @@ GFXDECODE_END
/******************************************************************************/
-void actfancr_state::machine_start_triothep()
+MACHINE_START_MEMBER(actfancr_state,triothep)
{
save_item(NAME(m_trio_control_select));
}
-void actfancr_state::machine_reset_triothep()
+MACHINE_RESET_MEMBER(actfancr_state,triothep)
{
m_trio_control_select = 0;
}
@@ -351,8 +351,8 @@ MACHINE_CONFIG_START(actfancr_state::triothep)
MCFG_DEVICE_ADD("audiocpu",M6502, XTAL(12'000'000)/8) /* verified on pcb */
MCFG_DEVICE_PROGRAM_MAP(dec0_s_map)
- set_machine_start_cb(config, driver_callback_delegate(&machine_start_triothep, this));
- set_machine_reset_cb(config, driver_callback_delegate(&machine_reset_triothep, this));
+ MCFG_MACHINE_START_OVERRIDE(actfancr_state,triothep)
+ MCFG_MACHINE_RESET_OVERRIDE(actfancr_state,triothep)
/* video hardware */
MCFG_SCREEN_ADD("screen", RASTER)