summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bbc/tube/tube.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/bbc/tube/tube.cpp')
-rw-r--r--src/devices/bus/bbc/tube/tube.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/bbc/tube/tube.cpp b/src/devices/bus/bbc/tube/tube.cpp
index 694cecfc2f3..5404402c0c6 100644
--- a/src/devices/bus/bbc/tube/tube.cpp
+++ b/src/devices/bus/bbc/tube/tube.cpp
@@ -15,7 +15,7 @@
// DEVICE DEFINITIONS
//**************************************************************************
-const device_type BBC_TUBE_SLOT = device_creator<bbc_tube_slot_device>;
+DEFINE_DEVICE_TYPE(BBC_TUBE_SLOT, bbc_tube_slot_device, "bbc_tube_slot", "BBC Micro Tube port")
@@ -53,8 +53,8 @@ device_bbc_tube_interface::~device_bbc_tube_interface()
//-------------------------------------------------
bbc_tube_slot_device::bbc_tube_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- device_t(mconfig, BBC_TUBE_SLOT, "BBC Micro Tube port", tag, owner, clock, "bbc_tube_slot", __FILE__),
- device_slot_interface(mconfig, *this)
+ device_t(mconfig, BBC_TUBE_SLOT, tag, owner, clock),
+ device_slot_interface(mconfig, *this)
{
}