summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/coco/coco_orch90.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/coco/coco_orch90.cpp')
-rw-r--r--src/devices/bus/coco/coco_orch90.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/coco/coco_orch90.cpp b/src/devices/bus/coco/coco_orch90.cpp
index 1d3ee1c5a94..f1f66367ed6 100644
--- a/src/devices/bus/coco/coco_orch90.cpp
+++ b/src/devices/bus/coco/coco_orch90.cpp
@@ -32,7 +32,7 @@ MACHINE_CONFIG_END
// GLOBAL VARIABLES
//**************************************************************************
-const device_type COCO_ORCH90 = device_creator<coco_orch90_device>;
+DEFINE_DEVICE_TYPE(COCO_ORCH90, coco_orch90_device, "coco_orch90", "CoCo Orch-90 PAK")
//**************************************************************************
// LIVE DEVICE
@@ -43,10 +43,10 @@ const device_type COCO_ORCH90 = device_creator<coco_orch90_device>;
//-------------------------------------------------
coco_orch90_device::coco_orch90_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, COCO_ORCH90, "CoCo Orch-90 PAK", tag, owner, clock, "coco_orch90", __FILE__),
- device_cococart_interface(mconfig, *this ),
- m_ldac(*this, "ldac"),
- m_rdac(*this, "rdac")
+ : device_t(mconfig, COCO_ORCH90, tag, owner, clock)
+ , device_cococart_interface(mconfig, *this )
+ , m_ldac(*this, "ldac")
+ , m_rdac(*this, "rdac")
{
}