summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2018-09-01 08:46:09 -0400
committer GitHub <noreply@github.com>2018-09-01 08:46:09 -0400
commitfd6ca4f9e7a2e16b343203a3d25d5b44187351c0 (patch)
tree5a4c6f2036137877801df4efaaadb5fb158dafe4
parent009e2243fb3a53e1aee40de32ade9a50c0ac4001 (diff)
parentcd7ea3c51315fcaf2d19170af63e49f591ca0888 (diff)
Merge pull request #3938 from cam900/patch-52
r2dx_v33.cpp : Fix nzerotea/zerotm2k OKI clock
-rw-r--r--src/mame/drivers/r2dx_v33.cpp6
1 files 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)