summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bbc/analogue/analogue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/bbc/analogue/analogue.cpp')
-rw-r--r--src/devices/bus/bbc/analogue/analogue.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/bbc/analogue/analogue.cpp b/src/devices/bus/bbc/analogue/analogue.cpp
index 726f869771c..5d7f4497d67 100644
--- a/src/devices/bus/bbc/analogue/analogue.cpp
+++ b/src/devices/bus/bbc/analogue/analogue.cpp
@@ -14,7 +14,7 @@
// DEVICE DEFINITIONS
//**************************************************************************
-const device_type BBC_ANALOGUE_SLOT = device_creator<bbc_analogue_slot_device>;
+DEFINE_DEVICE_TYPE(BBC_ANALOGUE_SLOT, bbc_analogue_slot_device, "bbc_analogue_slot", "BBC Micro Analogue port")
@@ -51,8 +51,8 @@ device_bbc_analogue_interface::~device_bbc_analogue_interface()
//-------------------------------------------------
bbc_analogue_slot_device::bbc_analogue_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- device_t(mconfig, BBC_ANALOGUE_SLOT, "BBC Micro Analogue port", tag, owner, clock, "bbc_analogue_slot", __FILE__),
- device_slot_interface(mconfig, *this)
+ device_t(mconfig, BBC_ANALOGUE_SLOT, tag, owner, clock),
+ device_slot_interface(mconfig, *this)
{
}