trunk/src/mame/drivers/cabal.c
| r243207 | r243208 | |
| 484 | 484 | MCFG_SPEAKER_STANDARD_MONO("mono") |
| 485 | 485 | |
| 486 | 486 | MCFG_YM2151_ADD("ymsnd", XTAL_3_579545MHz) /* verified on pcb */ |
| 487 | | MCFG_YM2151_IRQ_HANDLER(DEVWRITELINE("seibu_sound", seibu_sound_device, fm_irqhandler)) |
| 487 | MCFG_YM2151_IRQ_HANDLER(DEVWRITELINE("seibu_sound", seibu_sound_device, ym2151_irqhandler)) |
| 488 | 488 | MCFG_SOUND_ROUTE(ALL_OUTPUTS,"mono", 0.80) |
| 489 | 489 | |
| 490 | 490 | MCFG_SOUND_ADD("adpcm1", SEIBU_ADPCM, 8000) /* it should use the msm5205 */ |
trunk/src/mame/drivers/shanghai.c
| r243207 | r243208 | |
| 514 | 514 | |
| 515 | 515 | /* same as standard seibu ym2203, but "ym1" also reads "DSW" */ |
| 516 | 516 | MCFG_SOUND_ADD("ym1", YM2203, XTAL_16MHz/4) |
| 517 | | MCFG_YM2203_IRQ_HANDLER(DEVWRITELINE("seibu_sound", seibu_sound_device, fm_irqhandler)) |
| 517 | MCFG_YM2203_IRQ_HANDLER(DEVWRITELINE("seibu_sound", seibu_sound_device, ym2203_irqhandler)) |
| 518 | 518 | MCFG_AY8910_PORT_A_READ_CB(IOPORT("DSW")) |
| 519 | 519 | MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.15) |
| 520 | 520 | |