file location update (nw)

This commit is contained in:
Miodrag Milanovic 2013-05-15 12:09:59 +00:00
parent 8125e3de3a
commit 0440eebc7f
3 changed files with 3 additions and 3 deletions

View File

@ -86,7 +86,7 @@ ROM_END
//-------------------------------------------------
qsound_device::qsound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, QSOUND, "Q-Sound", tag, owner, clock, "qsound"),
: device_t(mconfig, QSOUND, "Q-Sound", tag, owner, clock, "qsound", __FILE__),
device_sound_interface(mconfig, *this),
m_data(0),
m_stream(NULL),

View File

@ -214,7 +214,7 @@ const rom_entry *isa8_ide_device::device_rom_region() const
//-------------------------------------------------
isa8_ide_device::isa8_ide_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, ISA8_IDE, "XT-IDE Fixed Drive Adapter", tag, owner, clock),
: device_t(mconfig, ISA8_IDE, "XT-IDE Fixed Drive Adapter", tag, owner, clock, "isa8_ide", __FILE__),
device_isa8_card_interface( mconfig, *this )
{
}

View File

@ -5,7 +5,7 @@
const device_type PSX_MULTITAP = &device_creator<psx_multitap_device>;
psx_multitap_device::psx_multitap_device(const machine_config& mconfig, const char* tag, device_t* owner, UINT32 clock) :
device_t(mconfig, PSX_MULTITAP, "Playstation Multitap", tag, owner, clock),
device_t(mconfig, PSX_MULTITAP, "Playstation Multitap", tag, owner, clock, "psx_multitap", __FILE__),
device_psx_controller_interface(mconfig, *this),
m_porta(*this, "a"),
m_portb(*this, "b"),