summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author ajrhacker <ajrhacker@users.noreply.github.com>2019-08-31 12:00:34 -0400
committer GitHub <noreply@github.com>2019-08-31 12:00:34 -0400
commitb4305f44a93e9a365818f9b63229f5d8fbff4ccd (patch)
tree71cb06c89543358d701d2d41e66063e1ffdfab62
parent2161c2fc375d15b825eb68714c8f556e44bfd0cc (diff)
parentbe16e889a599f2868c9d40732c9011db66deb9d7 (diff)
Merge pull request #5575 from yukaritamura/supbtime_68clk
Fix the main cpu clock for the DE-0343 board
-rw-r--r--src/mame/drivers/supbtime.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/supbtime.cpp b/src/mame/drivers/supbtime.cpp
index 6622f76812e..c9f69fa8331 100644
--- a/src/mame/drivers/supbtime.cpp
+++ b/src/mame/drivers/supbtime.cpp
@@ -327,7 +327,7 @@ GFXDECODE_END
void supbtime_state::supbtime(machine_config &config)
{
- M68000(config, m_maincpu, XTAL(28'000'000) / 2);
+ M68000(config, m_maincpu, XTAL(21'477'272) / 2);
m_maincpu->set_addrmap(AS_PROGRAM, &supbtime_state::supbtime_map);
H6280(config, m_audiocpu, XTAL(32'220'000) / 8);