From cd7ea3c51315fcaf2d19170af63e49f591ca0888 Mon Sep 17 00:00:00 2001 From: cam900 Date: Sat, 1 Sep 2018 21:28:50 +0900 Subject: r2dx_v33.cpp : Fix nzerotea/zerotm2k OKI clock --- src/mame/drivers/r2dx_v33.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mame/drivers/r2dx_v33.cpp b/src/mame/drivers/r2dx_v33.cpp index fd71408d937..ba8cba51f38 100644 --- a/src/mame/drivers/r2dx_v33.cpp +++ b/src/mame/drivers/r2dx_v33.cpp @@ -829,7 +829,7 @@ MACHINE_CONFIG_START(r2dx_v33_state::nzerotea) MCFG_MACHINE_RESET_OVERRIDE(r2dx_v33_state,nzeroteam) - MCFG_DEVICE_ADD("audiocpu", Z80, 14318180/4) + MCFG_DEVICE_ADD("audiocpu", Z80, XTAL(28'636'363)/8) MCFG_DEVICE_PROGRAM_MAP(zeroteam_sound_map) MCFG_DEVICE_IRQ_ACKNOWLEDGE_DEVICE("seibu_sound", seibu_sound_device, im0_vector_cb) @@ -854,11 +854,11 @@ MACHINE_CONFIG_START(r2dx_v33_state::nzerotea) /* sound hardware */ SPEAKER(config, "mono").front_center(); - MCFG_DEVICE_ADD("ymsnd", YM3812, 14318180/4) + MCFG_DEVICE_ADD("ymsnd", YM3812, XTAL(28'636'363)/8) MCFG_YM3812_IRQ_HANDLER(WRITELINE("seibu_sound", seibu_sound_device, fm_irqhandler)) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0) - MCFG_DEVICE_ADD("oki", OKIM6295, 1320000, okim6295_device::PIN7_LOW) + MCFG_DEVICE_ADD("oki", OKIM6295, XTAL(28'636'363)/28, okim6295_device::PIN7_LOW) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.40) MCFG_DEVICE_ADD("seibu_sound", SEIBU_SOUND, 0) -- cgit v1.2.3