mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
Device validation fixes: Gottlieb and Leland audio (nw)
This commit is contained in:
parent
e980265ec5
commit
fac75756c9
@ -40,7 +40,7 @@ const device_type GOTTLIEB_SOUND_REV2 = device_creator<gottlieb_sound_r2_device>
|
||||
//-------------------------------------------------
|
||||
|
||||
gottlieb_sound_r0_device::gottlieb_sound_r0_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: device_t(mconfig, GOTTLIEB_SOUND_REV1, "Gottlieb Sound rev. 0", tag, owner, clock, "gotsndr0", __FILE__)
|
||||
: device_t(mconfig, GOTTLIEB_SOUND_REV0, "Gottlieb Sound rev. 0", tag, owner, clock, "gotsndr0", __FILE__)
|
||||
, device_mixer_interface(mconfig, *this)
|
||||
, m_audiocpu(*this, "audiocpu")
|
||||
, m_r6530(*this, "r6530")
|
||||
@ -178,7 +178,7 @@ gottlieb_sound_r1_device::gottlieb_sound_r1_device(
|
||||
uint32_t clock,
|
||||
const char *shortname,
|
||||
const char *source)
|
||||
: device_t(mconfig, type, "Gottlieb Sound rev. 1", tag, owner, clock, shortname, source)
|
||||
: device_t(mconfig, type, name, tag, owner, clock, shortname, source)
|
||||
, device_mixer_interface(mconfig, *this)
|
||||
, m_audiocpu(*this, "audiocpu")
|
||||
, m_riot(*this, "riot")
|
||||
|
@ -417,7 +417,7 @@ redline_80186_sound_device::redline_80186_sound_device(const machine_config &mco
|
||||
const device_type ATAXX_80186 = device_creator<ataxx_80186_sound_device>;
|
||||
|
||||
ataxx_80186_sound_device::ataxx_80186_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: leland_80186_sound_device(mconfig, REDLINE_80186, "80186 DAC (Ataxx)", tag, owner, clock, "ataxx_80186_sound", __FILE__)
|
||||
: leland_80186_sound_device(mconfig, ATAXX_80186, "80186 DAC (Ataxx)", tag, owner, clock, "ataxx_80186_sound", __FILE__)
|
||||
{
|
||||
m_type = TYPE_ATAXX;
|
||||
}
|
||||
@ -425,7 +425,7 @@ ataxx_80186_sound_device::ataxx_80186_sound_device(const machine_config &mconfig
|
||||
const device_type WSF_80186 = device_creator<wsf_80186_sound_device>;
|
||||
|
||||
wsf_80186_sound_device::wsf_80186_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: leland_80186_sound_device(mconfig, REDLINE_80186, "80186 DAC (WSF)", tag, owner, clock, "wsf_80186_sound", __FILE__)
|
||||
: leland_80186_sound_device(mconfig, WSF_80186, "80186 DAC (WSF)", tag, owner, clock, "wsf_80186_sound", __FILE__)
|
||||
{
|
||||
m_type = TYPE_WSF;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user