Previous 199869 Revisions Next

r33594 Sunday 30th November, 2014 at 15:22:33 UTC by Alex W. Jackson
"Seibu ADPCM" is a MSM5205 (nw)
[src/mame/audio]seibu.c
[src/mame/drivers]cabal.c

trunk/src/mame/audio/seibu.c
r242105r242106
479479
480480/***************************************************************************
481481    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
482485***************************************************************************/
483486
484487const device_type SEIBU_ADPCM = &device_creator<seibu_adpcm_device>;
485488
486489seibu_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__),
488491      device_sound_interface(mconfig, *this),
489492      m_stream(NULL),
490493      m_current(0),
trunk/src/mame/drivers/cabal.c
r242105r242106
99The original uses 2xYM3931 for sound
1010The bootleg uses YM2151 + 2xZ80 used as ADPCM players
1111
12Coin inputs are handled by the sound CPU, so they don't work with sound
13disabled. Use the service switch instead.
1412
15
1613MEMORY MAP
17140x00000 - 0x3ffff   ROM
18150x40000 - 0x4ffff   RAM


Previous 199869 Revisions Next


© 1997-2024 The MAME Team