summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ieee488/shark.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ieee488/shark.cpp')
-rw-r--r--src/devices/bus/ieee488/shark.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/ieee488/shark.cpp b/src/devices/bus/ieee488/shark.cpp
index 10c911cca61..31d747446ab 100644
--- a/src/devices/bus/ieee488/shark.cpp
+++ b/src/devices/bus/ieee488/shark.cpp
@@ -27,7 +27,7 @@
// DEVICE DEFINITIONS
//**************************************************************************
-const device_type SHARK = device_creator<mshark_device>;
+DEFINE_DEVICE_TYPE(MSHARK, mshark_device, "mshark", "Mator SHARK")
//-------------------------------------------------
@@ -129,9 +129,9 @@ ioport_constructor mshark_device::device_input_ports() const
//-------------------------------------------------
mshark_device::mshark_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, SHARK, "Mator SHARK", tag, owner, clock, "mshark", __FILE__),
- device_ieee488_interface(mconfig, *this),
- m_maincpu(*this, I8085_TAG)
+ : device_t(mconfig, MSHARK, tag, owner, clock)
+ , device_ieee488_interface(mconfig, *this)
+ , m_maincpu(*this, I8085_TAG)
{
}