summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/coco_vhd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/coco_vhd.cpp')
-rw-r--r--src/mame/machine/coco_vhd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/coco_vhd.cpp b/src/mame/machine/coco_vhd.cpp
index 2cbb0eeef90..2384127346e 100644
--- a/src/mame/machine/coco_vhd.cpp
+++ b/src/mame/machine/coco_vhd.cpp
@@ -65,15 +65,15 @@
CORE IMPLEMENTATION
***************************************************************************/
-const device_type COCO_VHD = device_creator<coco_vhd_image_device>;
+DEFINE_DEVICE_TYPE(COCO_VHD, coco_vhd_image_device, "coco_vhd_image", "CoCo Virtual Hard Disk")
//-------------------------------------------------
// coco_vhd_image_device - constructor
//-------------------------------------------------
coco_vhd_image_device::coco_vhd_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, COCO_VHD, "Virtual Hard Disk", tag, owner, clock, "coco_vhd_image", __FILE__),
- device_image_interface(mconfig, *this)
+ : device_t(mconfig, COCO_VHD, tag, owner, clock)
+ , device_image_interface(mconfig, *this)
{
}