diff options
Diffstat (limited to 'src/devices/sound/tc8830f.cpp')
-rw-r--r-- | src/devices/sound/tc8830f.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/tc8830f.cpp b/src/devices/sound/tc8830f.cpp index 7a997d9d19f..37a6fecdbe3 100644 --- a/src/devices/sound/tc8830f.cpp +++ b/src/devices/sound/tc8830f.cpp @@ -22,10 +22,10 @@ // device type definition -const device_type TC8830F = device_creator<tc8830f_device>; +DEFINE_DEVICE_TYPE(TC8830F, tc8830f_device, "tc8830f", "Toshiba TC8830F") tc8830f_device::tc8830f_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : device_t(mconfig, TC8830F, "TC8830F", tag, owner, clock, "tc8830f", __FILE__), + : device_t(mconfig, TC8830F, tag, owner, clock), device_sound_interface(mconfig, *this), m_stream(nullptr), m_playing(false), m_address(0), |