summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/raiden.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/raiden.cpp')
-rw-r--r--src/mame/drivers/raiden.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mame/drivers/raiden.cpp b/src/mame/drivers/raiden.cpp
index bcd3c292dcf..872caaf387f 100644
--- a/src/mame/drivers/raiden.cpp
+++ b/src/mame/drivers/raiden.cpp
@@ -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)