summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/centronics/covox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/centronics/covox.cpp')
-rw-r--r--src/devices/bus/centronics/covox.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/centronics/covox.cpp b/src/devices/bus/centronics/covox.cpp
index 1caea17daae..ece3068f736 100644
--- a/src/devices/bus/centronics/covox.cpp
+++ b/src/devices/bus/centronics/covox.cpp
@@ -16,7 +16,7 @@
//**************************************************************************
// device type definition
-const device_type CENTRONICS_COVOX = device_creator<centronics_covox_device>;
+DEFINE_DEVICE_TYPE(CENTRONICS_COVOX, centronics_covox_device, "covox", "Covox Speech Thing")
static MACHINE_CONFIG_FRAGMENT( covox )
/* sound hardware */
@@ -35,7 +35,7 @@ MACHINE_CONFIG_END
//-------------------------------------------------
centronics_covox_device::centronics_covox_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, CENTRONICS_COVOX, "Covox Speech Thing", tag, owner, clock, "covox", __FILE__),
+ : device_t(mconfig, CENTRONICS_COVOX, tag, owner, clock),
device_centronics_peripheral_interface( mconfig, *this ),
m_dac(*this, "dac"),
m_data(0)
@@ -68,7 +68,7 @@ void centronics_covox_device::update_dac()
//**************************************************************************
// device type definition
-const device_type CENTRONICS_COVOX_STEREO = device_creator<centronics_covox_stereo_device>;
+DEFINE_DEVICE_TYPE(CENTRONICS_COVOX_STEREO, centronics_covox_stereo_device, "covox_stereo", "Covox (Stereo-in-1)")
static MACHINE_CONFIG_FRAGMENT( covox_stereo )
/* sound hardware */
@@ -89,7 +89,7 @@ MACHINE_CONFIG_END
//-------------------------------------------------
centronics_covox_stereo_device::centronics_covox_stereo_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, CENTRONICS_COVOX_STEREO, "Covox (Stereo-in-1)", tag, owner, clock, "covox_stereo", __FILE__),
+ : device_t(mconfig, CENTRONICS_COVOX_STEREO, tag, owner, clock),
device_centronics_peripheral_interface( mconfig, *this ),
m_ldac(*this, "ldac"),
m_rdac(*this, "rdac"),