diff options
| author | 2021-06-19 15:04:34 -0400 | |
|---|---|---|
| committer | 2021-06-19 15:04:34 -0400 | |
| commit | 423b3d0a91f996f5fe6db01a28f0547712de4dd7 (patch) | |
| tree | 029df7b7d1099b299df7ea3dc5a7a44115f1e0b3 | |
| parent | f42206bb30fc12b3821ae6e81b2ad80fe851a82f (diff) | |
leprechn: Keep VIA clocks consistent with CPU clock
| -rw-r--r-- | src/mame/drivers/gameplan.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
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); |
