Changes the clock speed of the YM262 interface to be OSC derived.

IE: Half of the YM278B standard clock or 16.9344MHz, a standard speed.
This commit is contained in:
Brian Troha 2008-02-03 05:53:41 +00:00
parent 662dea1a21
commit ee7fda924b

View File

@ -618,14 +618,14 @@ static MACHINE_DRIVER_START( fuuki32 )
/* sound hardware */
MDRV_SPEAKER_STANDARD_STEREO("left", "right")
MDRV_SOUND_ADD(YMF262, 14318180)
MDRV_SOUND_ADD(YMF262, 33868800/2) /* OSC divided by 2 is 16.9344MHz */
MDRV_SOUND_CONFIG(ymf262_interface)
MDRV_SOUND_ROUTE(0, "left", 0.50)
MDRV_SOUND_ROUTE(1, "right", 0.50)
MDRV_SOUND_ROUTE(2, "left", 0.50)
MDRV_SOUND_ROUTE(3, "right", 0.50)
MDRV_SOUND_ADD(YMF278B, YMF278B_STD_CLOCK)
MDRV_SOUND_ADD(YMF278B, YMF278B_STD_CLOCK) /* YMF278B_STD_CLOCK = OSC 33.8688MHz */
MDRV_SOUND_CONFIG(ymf278b_interface)
MDRV_SOUND_ROUTE(0, "left", 0.50)
MDRV_SOUND_ROUTE(1, "right", 0.50)