mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
fix late bind error (nw)
This commit is contained in:
parent
5f87c23739
commit
80eb9db1a6
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user