summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/aakart.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/aakart.cpp')
-rw-r--r--src/devices/machine/aakart.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/devices/machine/aakart.cpp b/src/devices/machine/aakart.cpp
index 6608ba32a3c..09924675a9d 100644
--- a/src/devices/machine/aakart.cpp
+++ b/src/devices/machine/aakart.cpp
@@ -19,7 +19,7 @@ TODO:
//**************************************************************************
// device type definition
-const device_type AAKART = device_creator<aakart_device>;
+DEFINE_DEVICE_TYPE(AAKART, aakart_device, "aakart", "Acorn Archimedes KART")
#define HRST 0xff
#define RAK1 0xfe
@@ -40,9 +40,11 @@ const device_type AAKART = device_creator<aakart_device>;
//-------------------------------------------------
aakart_device::aakart_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, AAKART, "AAKART", tag, owner, clock, "aakart", __FILE__), m_rxtimer(nullptr), m_txtimer(nullptr), m_mousetimer(nullptr), m_keybtimer(nullptr),
+ : device_t(mconfig, AAKART, tag, owner, clock), m_rxtimer(nullptr),
+ m_txtimer(nullptr), m_mousetimer(nullptr), m_keybtimer(nullptr),
m_out_tx_cb(*this),
- m_out_rx_cb(*this), m_tx_latch(0), m_rx(0), m_new_command(0), m_status(0), m_mouse_enable(0), m_keyb_enable(0)
+ m_out_rx_cb(*this),
+ m_tx_latch(0), m_rx(0), m_new_command(0), m_status(0), m_mouse_enable(0), m_keyb_enable(0)
{
}