fix late bind error (nw)

This commit is contained in:
Miodrag Milanovic 2013-08-01 12:19:39 +00:00
parent 5f87c23739
commit 80eb9db1a6
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ static const ay8910_interface ay8910_config =
static MACHINE_CONFIG_FRAGMENT( pc9801_118_config )
MCFG_SPEAKER_STANDARD_MONO("mono")
MCFG_SOUND_ADD("opn3", YM2608, MAIN_CLOCK_X1*4) // actually YMF288, unknown clock / divider
MCFG_YM2608_IRQ_HANDLER(DEVWRITELINE(DEVICE_SELF_OWNER, pc9801_118_device, pc9801_sound_irq))
MCFG_YM2608_IRQ_HANDLER(DEVWRITELINE(DEVICE_SELF, pc9801_118_device, pc9801_sound_irq))
MCFG_YM2608_AY8910_INTF(&ay8910_config)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00)
MACHINE_CONFIG_END

View File

@ -54,7 +54,7 @@ static const ay8910_interface ay8910_config =
static MACHINE_CONFIG_FRAGMENT( pc9801_86_config )
MCFG_SPEAKER_STANDARD_MONO("mono")
MCFG_SOUND_ADD("opna", YM2608, MAIN_CLOCK_X1*4) // unknown clock / divider
MCFG_YM2608_IRQ_HANDLER(DEVWRITELINE(DEVICE_SELF_OWNER, pc9801_86_device, pc9801_sound_irq))
MCFG_YM2608_IRQ_HANDLER(DEVWRITELINE(DEVICE_SELF, pc9801_86_device, pc9801_sound_irq))
MCFG_YM2608_AY8910_INTF(&ay8910_config)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00)
MACHINE_CONFIG_END