summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess
diff options
context:
space:
mode:
author David Haywood <mamehaze@users.noreply.github.com>2015-09-14 02:11:26 +0100
committer David Haywood <mamehaze@users.noreply.github.com>2015-09-14 02:11:26 +0100
commit7960d296ad894e7a74b23ea7e4da26100c7b1f1f (patch)
treece9ac15f768b9a9ffc2c3553224132a6aca1d13f /src/mess
parentf93c013f8b464050a962fd881f14e2c094909240 (diff)
parent1068a0115394c815f5624a6018a2a18142f5b583 (diff)
Merge pull request #324 from ValleyBell/valleybell
fix for FM-Towns clock, minor fixes
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 ed22f14dbd4..362fed1c7a0 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)