summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/ds1315.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/ds1315.cpp')
-rw-r--r--src/devices/machine/ds1315.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/ds1315.cpp b/src/devices/machine/ds1315.cpp
index 6056f4e075e..7be26b1a19e 100644
--- a/src/devices/machine/ds1315.cpp
+++ b/src/devices/machine/ds1315.cpp
@@ -26,10 +26,10 @@
#include "coreutil.h"
-const device_type DS1315 = device_creator<ds1315_device>;
+DEFINE_DEVICE_TYPE(DS1315, ds1315_device, "ds1315", "Dallas DS1315 Phantom Time Chip")
ds1315_device::ds1315_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, DS1315, "Dallas Semiconductor DS1315", tag, owner, clock, "ds1315", __FILE__), m_mode(), m_count(0)
+ : device_t(mconfig, DS1315, tag, owner, clock), m_mode(), m_count(0)
{
}