From 423b3d0a91f996f5fe6db01a28f0547712de4dd7 Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 19 Jun 2021 15:04:34 -0400 Subject: leprechn: Keep VIA clocks consistent with CPU clock --- src/mame/drivers/gameplan.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mame/drivers/gameplan.cpp b/src/mame/drivers/gameplan.cpp index 9baa207b01d..d6e55864a45 100644 --- a/src/mame/drivers/gameplan.cpp +++ b/src/mame/drivers/gameplan.cpp @@ -1000,6 +1000,9 @@ void gameplan_state::leprechn(machine_config &config) { gameplan(config); m_maincpu->set_clock(LEPRECHAUN_MAIN_CPU_CLOCK); + m_via_0->set_clock(LEPRECHAUN_MAIN_CPU_CLOCK); + m_via_1->set_clock(LEPRECHAUN_MAIN_CPU_CLOCK); + m_via_2->set_clock(LEPRECHAUN_MAIN_CPU_CLOCK); /* basic machine hardware */ m_audiocpu->set_addrmap(AS_PROGRAM, &gameplan_state::leprechn_audio_map); -- cgit v1.2.3