summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/rs232/xvd701.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/rs232/xvd701.cpp')
-rw-r--r--src/devices/bus/rs232/xvd701.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/rs232/xvd701.cpp b/src/devices/bus/rs232/xvd701.cpp
index 6b94b0e2cb6..f6f88186044 100644
--- a/src/devices/bus/rs232/xvd701.cpp
+++ b/src/devices/bus/rs232/xvd701.cpp
@@ -4,7 +4,7 @@
#include "xvd701.h"
jvc_xvd701_device::jvc_xvd701_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, JVC_XVD701, "JVC XV-D701", tag, owner, clock, "xvd701", __FILE__),
+ : device_t(mconfig, JVC_XVD701, tag, owner, clock),
device_serial_interface(mconfig, *this),
device_rs232_port_interface(mconfig, *this),
m_response_index(0),
@@ -150,4 +150,4 @@ void jvc_xvd701_device::rcv_complete()
}
}
-const device_type JVC_XVD701 = device_creator<jvc_xvd701_device>;
+DEFINE_DEVICE_TYPE(JVC_XVD701, jvc_xvd701_device, "xvd701", "JVC XV-D701")