asteroid: Set the watchdog frequency. (#12866)

This commit is contained in:
Mike 2024-10-08 18:13:32 -07:00 committed by GitHub
parent 1ca12d518a
commit 8e6222bb6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -838,7 +838,7 @@ void asteroid_state::asteroid_base(machine_config &config)
m_maincpu->set_addrmap(AS_PROGRAM, &asteroid_state::asteroid_map);
m_maincpu->set_periodic_int(FUNC(asteroid_state::asteroid_interrupt), attotime::from_hz(CLOCK_3KHZ/12));
WATCHDOG_TIMER(config, "watchdog");
WATCHDOG_TIMER(config, "watchdog").set_time(attotime::from_hz(CLOCK_3KHZ / 256));
TTL153(config, m_dsw_sel);