diff options
| author | 2019-09-10 00:04:07 +0900 | |
|---|---|---|
| committer | 2019-09-10 00:06:32 +0900 | |
| commit | 663197d7bcf6664f3b00eaa0f66e14f2e4cd0b67 (patch) | |
| tree | 33883278833b0b790f9ffc4204c7b4a8910b95b4 | |
| parent | 3f4fcc06b890e96d08f8d7f05e6ec1bc8bfd8598 (diff) | |
Fix the audio cpu clock for the DE-0343 board
The HuC6280 core seems to run at 8.055MHz rather than 16.110MHz.
Confirmed by DE-0343-4, Tumblepop.
| -rw-r--r-- | src/mame/drivers/supbtime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/supbtime.cpp b/src/mame/drivers/supbtime.cpp index c9f69fa8331..eae426e01fc 100644 --- a/src/mame/drivers/supbtime.cpp +++ b/src/mame/drivers/supbtime.cpp @@ -330,7 +330,7 @@ void supbtime_state::supbtime(machine_config &config) 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); + H6280(config, m_audiocpu, XTAL(32'220'000) / 4); m_audiocpu->set_addrmap(AS_PROGRAM, &supbtime_state::sound_map); m_audiocpu->add_route(ALL_OUTPUTS, "mono", 0); // internal sound unused |
