summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vip/exp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vip/exp.cpp')
-rw-r--r--src/devices/bus/vip/exp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/vip/exp.cpp b/src/devices/bus/vip/exp.cpp
index f5dc4bdd070..5430dd482ed 100644
--- a/src/devices/bus/vip/exp.cpp
+++ b/src/devices/bus/vip/exp.cpp
@@ -23,7 +23,7 @@
// DEVICE DEFINITIONS
//**************************************************************************
-const device_type VIP_EXPANSION_SLOT = device_creator<vip_expansion_slot_device>;
+DEFINE_DEVICE_TYPE(VIP_EXPANSION_SLOT, vip_expansion_slot_device, "vip_expansion_slot", "VIP expansion port")
@@ -52,7 +52,7 @@ device_vip_expansion_card_interface::device_vip_expansion_card_interface(const m
//-------------------------------------------------
vip_expansion_slot_device::vip_expansion_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- device_t(mconfig, VIP_EXPANSION_SLOT, "VIP expansion port", tag, owner, clock, "vip_expansion_slot", __FILE__),
+ device_t(mconfig, VIP_EXPANSION_SLOT, tag, owner, clock),
device_slot_interface(mconfig, *this),
m_write_int(*this),
m_write_dma_out(*this),