summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author ClawGrip <clawgrip@hotmail.com>2022-04-22 18:05:06 +0200
committer GitHub <noreply@github.com>2022-04-22 18:05:06 +0200
commitc4c68f66fd17721817abdd6d34a7d5d81d5b59aa (patch)
tree8af55c51aea17e86c0d6a673e63c37af02a62179
parent577f6e25240fd3048203ca9e2f2f97d9c0d101df (diff)
gaelco.cpp: Verify clocks (#9610)
-rw-r--r--src/mame/drivers/gaelco.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/gaelco.cpp b/src/mame/drivers/gaelco.cpp
index c002204ffc9..081a24c57c2 100644
--- a/src/mame/drivers/gaelco.cpp
+++ b/src/mame/drivers/gaelco.cpp
@@ -699,11 +699,11 @@ void gaelco_state::machine_start()
void gaelco_state::bigkarnk(machine_config &config)
{
// Basic machine hardware
- M68000(config, m_maincpu, XTAL(24'000'000)/2); // MC68000P10, 12 MHz?
+ M68000(config, m_maincpu, XTAL(24'000'000)/2); // MC68000P10, 12 MHz (verified)
m_maincpu->set_addrmap(AS_PROGRAM, &gaelco_state::bigkarnk_map);
m_maincpu->set_vblank_int("screen", FUNC(gaelco_state::irq6_line_assert));
- MC6809E(config, m_audiocpu, XTAL(8'000'000)/4); // 68B09EP, 2 MHz?
+ MC6809E(config, m_audiocpu, XTAL(8'000'000)/4); // 68B09EP, 2 MHz (verified)
m_audiocpu->set_addrmap(AS_PROGRAM, &gaelco_state::bigkarnk_snd_map);
config.set_maximum_quantum(attotime::from_hz(600));