trunk/src/mess/machine/isa_ide8.c
r22827 | r22828 | |
214 | 214 | //------------------------------------------------- |
215 | 215 | |
216 | 216 | isa8_ide_device::isa8_ide_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
217 | | : device_t(mconfig, ISA8_IDE, "XT-IDE Fixed Drive Adapter", tag, owner, clock), |
| 217 | : device_t(mconfig, ISA8_IDE, "XT-IDE Fixed Drive Adapter", tag, owner, clock, "isa8_ide", __FILE__), |
218 | 218 | device_isa8_card_interface( mconfig, *this ) |
219 | 219 | { |
220 | 220 | } |
trunk/src/mess/machine/psxmultitap.c
r22827 | r22828 | |
5 | 5 | const device_type PSX_MULTITAP = &device_creator<psx_multitap_device>; |
6 | 6 | |
7 | 7 | psx_multitap_device::psx_multitap_device(const machine_config& mconfig, const char* tag, device_t* owner, UINT32 clock) : |
8 | | device_t(mconfig, PSX_MULTITAP, "Playstation Multitap", tag, owner, clock), |
| 8 | device_t(mconfig, PSX_MULTITAP, "Playstation Multitap", tag, owner, clock, "psx_multitap", __FILE__), |
9 | 9 | device_psx_controller_interface(mconfig, *this), |
10 | 10 | m_porta(*this, "a"), |
11 | 11 | m_portb(*this, "b"), |
trunk/src/emu/sound/qsound.c
r22827 | r22828 | |
86 | 86 | //------------------------------------------------- |
87 | 87 | |
88 | 88 | qsound_device::qsound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
89 | | : device_t(mconfig, QSOUND, "Q-Sound", tag, owner, clock, "qsound"), |
| 89 | : device_t(mconfig, QSOUND, "Q-Sound", tag, owner, clock, "qsound", __FILE__), |
90 | 90 | device_sound_interface(mconfig, *this), |
91 | 91 | m_data(0), |
92 | 92 | m_stream(NULL), |