summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/tvc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/tvc.cpp')
-rw-r--r--src/mame/audio/tvc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/tvc.cpp b/src/mame/audio/tvc.cpp
index 693de81fb18..0c4a70d22b6 100644
--- a/src/mame/audio/tvc.cpp
+++ b/src/mame/audio/tvc.cpp
@@ -10,14 +10,14 @@
#include "tvc.h"
// device type definition
-const device_type TVC_SOUND = device_creator<tvc_sound_device>;
+DEFINE_DEVICE_TYPE(TVC_SOUND, tvc_sound_device, "tvc_sound", "TVC 64 Audio Custom")
//-------------------------------------------------
// tvc_sound_device - constructor
//-------------------------------------------------
tvc_sound_device::tvc_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- device_t(mconfig, TVC_SOUND, "TVC 64 Audio Custom", tag, owner, clock, "tvc_sound", __FILE__),
+ device_t(mconfig, TVC_SOUND, tag, owner, clock),
device_sound_interface(mconfig, *this),
m_write_sndint(*this)
{