summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/seta.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/seta.cpp')
-rw-r--r--src/mame/drivers/seta.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mame/drivers/seta.cpp b/src/mame/drivers/seta.cpp
index 2b6b808b439..bab9c301e15 100644
--- a/src/mame/drivers/seta.cpp
+++ b/src/mame/drivers/seta.cpp
@@ -8758,7 +8758,11 @@ MACHINE_CONFIG_END
Zombie Raid
***************************************************************************/
-void zombraid_state::machine_start() { m_gun_recoil.resolve(); }
+MACHINE_START_MEMBER(zombraid_state,zombraid)
+{
+ uPD71054_timer_init();
+ m_gun_recoil.resolve();
+}
MACHINE_CONFIG_START(zombraid_state::zombraid)
gundhara(config);
@@ -8767,6 +8771,8 @@ MACHINE_CONFIG_START(zombraid_state::zombraid)
MCFG_DEVICE_MODIFY("maincpu")
MCFG_DEVICE_PROGRAM_MAP(zombraid_map)
+ MCFG_MACHINE_START_OVERRIDE(zombraid_state, zombraid)
+
NVRAM(config, "nvram", nvram_device::DEFAULT_ALL_0);
adc0834_device &adc(ADC0834(config, "adc", 0));