raiden.cpp: corrected xtal / clocks for raidenb set [Corrado Tomaselli, The Dumping Union]

This commit is contained in:
Ivan Vangelista 2018-02-19 18:25:29 +01:00
parent 8fb07a0762
commit 16aa842e63

View File

@ -398,8 +398,12 @@ MACHINE_CONFIG_START(raiden_state::raidenb)
/* basic machine hardware */
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_CLOCK(XTAL(32'000'000) / 4) // Xtal and clock verified, real hw has heavy slow downs, sometimes making the game borderline unplayable
MCFG_CPU_PROGRAM_MAP(raidenb_main_map)
MCFG_CPU_MODIFY("sub")
MCFG_CPU_CLOCK(XTAL(32'000'000) / 4) // Xtal and clock verified
/* video hardware */
MCFG_VIDEO_START_OVERRIDE(raiden_state,raidenb)