summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/dlair.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2018-09-07 18:26:29 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2018-09-07 18:26:29 +0200
commit44f3ad511c812dc3242c41c501981e1816747c61 (patch)
tree5b59e8c2fd954ce1dbd9ac7afbdd0f502d7cafc2 /src/mame/drivers/dlair.cpp
parent6315d07fbf3cd5625ff1b2b6085e76f962c1a84d (diff)
watchdog: removed MCFG macros (nw)
Diffstat (limited to 'src/mame/drivers/dlair.cpp')
-rw-r--r--src/mame/drivers/dlair.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/dlair.cpp b/src/mame/drivers/dlair.cpp
index d65fc7e71b0..c9d94ee9cd6 100644
--- a/src/mame/drivers/dlair.cpp
+++ b/src/mame/drivers/dlair.cpp
@@ -781,8 +781,7 @@ MACHINE_CONFIG_START(dlair_state::dleuro)
sio.out_int_callback().set_inputline(m_maincpu, INPUT_LINE_IRQ0);
// TODO: hook up tx and rx callbacks
- MCFG_WATCHDOG_ADD("watchdog")
- MCFG_WATCHDOG_TIME_INIT(attotime::from_hz(MASTER_CLOCK_EURO/(16*16*16*16*16*8)))
+ WATCHDOG_TIMER(config, "watchdog").set_time(attotime::from_hz(MASTER_CLOCK_EURO/(16*16*16*16*16*8)));
MCFG_LASERDISC_22VP932_ADD("ld_22vp932")
MCFG_LASERDISC_OVERLAY_DRIVER(256, 256, dlair_state, screen_update_dleuro)