summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/rp5h01.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/rp5h01.cpp')
-rw-r--r--src/devices/machine/rp5h01.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/rp5h01.cpp b/src/devices/machine/rp5h01.cpp
index 2bf8dbdc6ee..21367354256 100644
--- a/src/devices/machine/rp5h01.cpp
+++ b/src/devices/machine/rp5h01.cpp
@@ -30,10 +30,10 @@ uint8_t const rp5h01_device::s_initial_data[0x10] =
// rp5h01_device - constructor
//-------------------------------------------------
-const device_type RP5H01 = device_creator<rp5h01_device>;
+DEFINE_DEVICE_TYPE(RP5H01, rp5h01_device, "rp5h01", "RP5H01 6/7-bit Counter")
rp5h01_device::rp5h01_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, RP5H01, "RP5H01 6/7-bit Counter", tag, owner, clock, "rp5h01", __FILE__)
+ : device_t(mconfig, RP5H01, tag, owner, clock)
, m_data(nullptr)
, m_rom(*this, DEVICE_SELF, 0x10)
{