trunk/src/mame/audio/seibu.c
| r242105 | r242106 | |
| 479 | 479 | |
| 480 | 480 | /*************************************************************************** |
| 481 | 481 | Seibu ADPCM device |
| 482 | (MSM5205 with interface to sample ROM provided by YM3931) |
| 483 | |
| 484 | FIXME: hook up an actual MSM5205 in place of this custom implementation |
| 482 | 485 | ***************************************************************************/ |
| 483 | 486 | |
| 484 | 487 | const device_type SEIBU_ADPCM = &device_creator<seibu_adpcm_device>; |
| 485 | 488 | |
| 486 | 489 | seibu_adpcm_device::seibu_adpcm_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 487 | | : device_t(mconfig, SEIBU_ADPCM, "Seibu ADPCM", tag, owner, clock, "seibu_adpcm", __FILE__), |
| 490 | : device_t(mconfig, SEIBU_ADPCM, "Seibu ADPCM (MSM5205)", tag, owner, clock, "seibu_adpcm", __FILE__), |
| 488 | 491 | device_sound_interface(mconfig, *this), |
| 489 | 492 | m_stream(NULL), |
| 490 | 493 | m_current(0), |