diff options
author | 2013-06-21 14:44:06 +0000 | |
---|---|---|
committer | 2013-06-21 14:44:06 +0000 | |
commit | e533a04f2e5690bfc2edac2dc2038f94b4bd903d (patch) | |
tree | 583486a98fa559fb449211bece50f1af9790b497 /src/emu/machine/ds75161a.c | |
parent | d49ea91e69b0406f3fc2de6034819498661dd93a (diff) |
changed rest of devices (except cpu cores) to have shortname and sourcefile (nw)
Diffstat (limited to 'src/emu/machine/ds75161a.c')
-rw-r--r-- | src/emu/machine/ds75161a.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/ds75161a.c b/src/emu/machine/ds75161a.c index 72fadb57677..bf0f55a9a8e 100644 --- a/src/emu/machine/ds75161a.c +++ b/src/emu/machine/ds75161a.c @@ -28,7 +28,7 @@ const device_type DS75161A = &device_creator<ds75161a_device>; //------------------------------------------------- ds75161a_device::ds75161a_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, DS75161A, "DS75161A", tag, owner, clock), + : device_t(mconfig, DS75161A, "DS75161A", tag, owner, clock, "ds75161a", __FILE__), m_ren(1), m_ifc(1), m_ndac(1), |