diff options
author | 2018-09-07 18:26:29 +0200 | |
---|---|---|
committer | 2018-09-07 18:26:29 +0200 | |
commit | 44f3ad511c812dc3242c41c501981e1816747c61 (patch) | |
tree | 5b59e8c2fd954ce1dbd9ac7afbdd0f502d7cafc2 /src/devices/bus/abckb/abc77.cpp | |
parent | 6315d07fbf3cd5625ff1b2b6085e76f962c1a84d (diff) |
watchdog: removed MCFG macros (nw)
Diffstat (limited to 'src/devices/bus/abckb/abc77.cpp')
-rw-r--r-- | src/devices/bus/abckb/abc77.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/bus/abckb/abc77.cpp b/src/devices/bus/abckb/abc77.cpp index 09ad0628e2e..666491c2b32 100644 --- a/src/devices/bus/abckb/abc77.cpp +++ b/src/devices/bus/abckb/abc77.cpp @@ -140,8 +140,7 @@ MACHINE_CONFIG_START(abc77_device::device_add_mconfig) MCFG_MCS48_PORT_PROG_OUT_CB(WRITELINE(*this, abc77_device, prog_w)) // watchdog - MCFG_WATCHDOG_ADD("watchdog") - MCFG_WATCHDOG_TIME_INIT(attotime::from_hz(XTAL(4'608'000)/3/5/4096)) + WATCHDOG_TIMER(config, m_watchdog).set_time(attotime::from_hz(XTAL(4'608'000)/3/5/4096)); // discrete sound SPEAKER(config, "mono").front_center(); |