Fix the main cpu clock for the DE-0343 board

The 68000 core, DATA EAST chip 59, should run at 10.738636MHz.
This is confirmed by DE-0343-4, Tumblepop. Pin 57 is for the clock.
This commit is contained in:
Yukari Tamura 2019-08-31 23:55:29 +09:00
parent 4effbd40d6
commit be16e889a5

View File

@ -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);