summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess
diff options
context:
space:
mode:
author Valley Bell <valleybell@gmx.de>2015-08-11 10:39:21 +0200
committer Valley Bell <valleybell@gmx.de>2015-08-11 10:39:21 +0200
commiteaae2dbb4c5468d8d8961bf96a6ead79a9d3ad10 (patch)
treef43094286a17dbddb648f41e35cc8b57fc5694c6 /src/mess
parent1b452e3bfb48e9c77e705a60ab285c382d457e8a (diff)
fix FM-Towns RF5C68 clock, fix game/music speed of Xor World
Diffstat (limited to 'src/mess')
-rw-r--r--src/mess/drivers/fmtowns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/drivers/fmtowns.c b/src/mess/drivers/fmtowns.c
index fa6235e04d2..b901bae842e 100644
--- a/src/mess/drivers/fmtowns.c
+++ b/src/mess/drivers/fmtowns.c
@@ -2696,11 +2696,11 @@ static MACHINE_CONFIG_FRAGMENT( towns_base )
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("fm", YM3438, 53693100 / 7) // actual clock speed unknown
+ MCFG_SOUND_ADD("fm", YM3438, 16000000 / 2) // actual clock speed unknown
MCFG_YM2612_IRQ_HANDLER(WRITELINE(towns_state, towns_fm_irq))
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
- MCFG_RF5C68_ADD("pcm", 53693100 / 7) // actual clock speed unknown
+ MCFG_RF5C68_ADD("pcm", 16000000 / 2) // actual clock speed unknown
MCFG_RF5C68_SAMPLE_END_CB(towns_state, towns_pcm_irq)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.50)
MCFG_SOUND_ADD("cdda",CDDA,0)