summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/midwunit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/midwunit.cpp')
-rw-r--r--src/mame/drivers/midwunit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/midwunit.cpp b/src/mame/drivers/midwunit.cpp
index f126bb88247..20cb84ed82c 100644
--- a/src/mame/drivers/midwunit.cpp
+++ b/src/mame/drivers/midwunit.cpp
@@ -632,7 +632,7 @@ MACHINE_CONFIG_START(midwunit_state::wunit)
MCFG_TMS340X0_TO_SHIFTREG_CB(midtunit_state, to_shiftreg) /* write to shiftreg function */
MCFG_TMS340X0_FROM_SHIFTREG_CB(midtunit_state, from_shiftreg) /* read from shiftreg function */
- MCFG_MACHINE_RESET_OVERRIDE(midwunit_state,midwunit)
+ set_machine_reset_cb(config, driver_callback_delegate(&machine_reset_midwunit, this));
MCFG_NVRAM_ADD_0FILL("nvram")
/* video hardware */
@@ -645,7 +645,7 @@ MACHINE_CONFIG_START(midwunit_state::wunit)
MCFG_SCREEN_UPDATE_DEVICE("maincpu", tms34010_device, tms340x0_ind16)
MCFG_SCREEN_PALETTE("palette")
- MCFG_VIDEO_START_OVERRIDE(midwunit_state,midwunit)
+ set_video_start_cb(config, driver_callback_delegate(&video_start_midwunit, this));
/* sound hardware */
MCFG_DEVICE_ADD("dcs", DCS_AUDIO_8K, 0)