summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ieee488/hp9895.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ieee488/hp9895.cpp')
-rw-r--r--src/devices/bus/ieee488/hp9895.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ieee488/hp9895.cpp b/src/devices/bus/ieee488/hp9895.cpp
index 131e115f073..6e5e62d6e53 100644
--- a/src/devices/bus/ieee488/hp9895.cpp
+++ b/src/devices/bus/ieee488/hp9895.cpp
@@ -130,7 +130,7 @@ enum {
#define MIN_SYNC_BITS 29 // Number of bits to synchronize
// device type definition
-const device_type HP9895 = device_creator<hp9895_device>;
+DEFINE_DEVICE_TYPE(HP9895, hp9895_device, "hp9895", "HP9895")
// Masks of drive selectors in XV register
static const uint8_t xv_drive_masks[] = {
@@ -139,7 +139,7 @@ static const uint8_t xv_drive_masks[] = {
};
hp9895_device::hp9895_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, HP9895, "HP9895", tag, owner, clock, "hp9895", __FILE__),
+ : device_t(mconfig, HP9895, tag, owner, clock),
device_ieee488_interface(mconfig, *this),
m_cpu(*this , "cpu"),
m_phi(*this , "phi"),