From a52d527a1cc6dcf5bc48268d0b0bd451aaeaf814 Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Sat, 30 Nov 2019 13:15:11 +0100 Subject: [PATCH] thoop2.cpp: fixed issue #5990 (nw) --- src/mame/drivers/thoop2.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mame/drivers/thoop2.cpp b/src/mame/drivers/thoop2.cpp index 7b153735cfa..d1f840327a3 100644 --- a/src/mame/drivers/thoop2.cpp +++ b/src/mame/drivers/thoop2.cpp @@ -269,6 +269,7 @@ void thoop2_state::thoop2(machine_config &config) gaelco_ds5002fp_device &ds5002fp(GAELCO_DS5002FP(config, "gaelco_ds5002fp", XTAL(24'000'000) / 2)); // 12MHz verified ds5002fp.set_addrmap(0, &thoop2_state::mcu_hostmem_map); + config.set_perfect_quantum("gaelco_ds5002fp:mcu"); LS259(config, m_outlatch); m_outlatch->q_out_cb<0>().set(FUNC(thoop2_state::coin1_lockout_w));