diff options
Diffstat (limited to 'src/devices/sound/t6721a.cpp')
-rw-r--r-- | src/devices/sound/t6721a.cpp | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/devices/sound/t6721a.cpp b/src/devices/sound/t6721a.cpp index 4cf3d2914c2..f4ea65a92b5 100644 --- a/src/devices/sound/t6721a.cpp +++ b/src/devices/sound/t6721a.cpp @@ -9,13 +9,8 @@ #include "emu.h" #include "t6721a.h" - - -//************************************************************************** -// MACROS / CONSTANTS -//************************************************************************** - -#define LOG 0 +//#define VERBOSE 1 +#include "logmacro.h" @@ -24,7 +19,7 @@ //************************************************************************** // device type definition -const device_type T6721A = device_creator<t6721a_device>; +DEFINE_DEVICE_TYPE(T6721A, t6721a_device, "t6721a", "Toshiba T6721A") @@ -37,7 +32,7 @@ const device_type T6721A = device_creator<t6721a_device>; //------------------------------------------------- t6721a_device::t6721a_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : device_t(mconfig, T6721A, "T6721A", tag, owner, clock, "t6721a", __FILE__), + : device_t(mconfig, T6721A, tag, owner, clock), device_sound_interface(mconfig, *this), m_write_eos(*this), m_write_phi2(*this), |