mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
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:
parent
662dea1a21
commit
ee7fda924b
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user