summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/cbmiec/cmdhd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/cbmiec/cmdhd.cpp')
-rw-r--r--src/devices/bus/cbmiec/cmdhd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/cbmiec/cmdhd.cpp b/src/devices/bus/cbmiec/cmdhd.cpp
index b554c9bda71..247d627ce7a 100644
--- a/src/devices/bus/cbmiec/cmdhd.cpp
+++ b/src/devices/bus/cbmiec/cmdhd.cpp
@@ -29,7 +29,7 @@
// DEVICE DEFINITIONS
//**************************************************************************
-const device_type CMD_HD = device_creator<cmd_hd_device>;
+DEFINE_DEVICE_TYPE(CMD_HD, cmd_hd_device, "cmdhd", "CMD HD")
//-------------------------------------------------
@@ -111,7 +111,7 @@ machine_config_constructor cmd_hd_device::device_mconfig_additions() const
//-------------------------------------------------
cmd_hd_device::cmd_hd_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, CMD_HD, "HD", tag, owner, clock, "cmdhd", __FILE__),
+ : device_t(mconfig, CMD_HD, tag, owner, clock),
device_cbm_iec_interface(mconfig, *this),
m_maincpu(*this, M6502_TAG),
m_scsibus(*this, SCSIBUS_TAG)