Device validation fixes: Gottlieb and Leland audio (nw)

This commit is contained in:
AJR 2017-03-03 11:32:00 -05:00
parent e980265ec5
commit fac75756c9
2 changed files with 4 additions and 4 deletions

View File

@ -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")

View File

@ -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;
}