summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/abckb/abckb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/abckb/abckb.cpp')
-rw-r--r--src/devices/bus/abckb/abckb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/abckb/abckb.cpp b/src/devices/bus/abckb/abckb.cpp
index fd0478f54ef..3dfb80c04cc 100644
--- a/src/devices/bus/abckb/abckb.cpp
+++ b/src/devices/bus/abckb/abckb.cpp
@@ -16,7 +16,7 @@
//**************************************************************************
// device type definition
-const device_type ABC_KEYBOARD_PORT = device_creator<abc_keyboard_port_device>;
+DEFINE_DEVICE_TYPE(ABC_KEYBOARD_PORT, abc_keyboard_port_device, "abc_keyboard_port", "Luxor ABC keyboard port")
@@ -44,7 +44,7 @@ abc_keyboard_interface::abc_keyboard_interface(const machine_config &mconfig, de
//-------------------------------------------------
abc_keyboard_port_device::abc_keyboard_port_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- device_t(mconfig, ABC_KEYBOARD_PORT, "Luxor ABC keyboard port", tag, owner, clock, "abc_keyboard_port", __FILE__),
+ device_t(mconfig, ABC_KEYBOARD_PORT, tag, owner, clock),
device_slot_interface(mconfig, *this),
m_out_rx_handler(*this),
m_out_trxc_handler(*this),