diff options
author | 2013-06-21 14:44:06 +0000 | |
---|---|---|
committer | 2013-06-21 14:44:06 +0000 | |
commit | e533a04f2e5690bfc2edac2dc2038f94b4bd903d (patch) | |
tree | 583486a98fa559fb449211bece50f1af9790b497 /src/mess/machine/nextkbd.c | |
parent | d49ea91e69b0406f3fc2de6034819498661dd93a (diff) |
changed rest of devices (except cpu cores) to have shortname and sourcefile (nw)
Diffstat (limited to 'src/mess/machine/nextkbd.c')
-rw-r--r-- | src/mess/machine/nextkbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/nextkbd.c b/src/mess/machine/nextkbd.c index 019fd7bc223..6967d04052b 100644 --- a/src/mess/machine/nextkbd.c +++ b/src/mess/machine/nextkbd.c @@ -9,7 +9,7 @@ DEVICE_ADDRESS_MAP_START(amap, 32, nextkbd_device) AM_RANGE(0x8, 0xb) AM_READWRITE(data_r, data_w) ADDRESS_MAP_END -nextkbd_device::nextkbd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, NEXTKBD, "NEXTKBD", tag, owner, clock) +nextkbd_device::nextkbd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, NEXTKBD, "NEXTKBD", tag, owner, clock, "nextkbd", __FILE__) { } |