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/genpc.c | |
parent | d49ea91e69b0406f3fc2de6034819498661dd93a (diff) |
changed rest of devices (except cpu cores) to have shortname and sourcefile (nw)
Diffstat (limited to 'src/mess/machine/genpc.c')
-rw-r--r-- | src/mess/machine/genpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/genpc.c b/src/mess/machine/genpc.c index 7451ec0e8d6..cab98efc357 100644 --- a/src/mess/machine/genpc.c +++ b/src/mess/machine/genpc.c @@ -544,7 +544,7 @@ void ibm5160_mb_device::static_set_cputag(device_t &device, const char *tag) //------------------------------------------------- ibm5160_mb_device::ibm5160_mb_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, IBM5160_MOTHERBOARD, "IBM5160_MOTHERBOARD", tag, owner, clock), + : device_t(mconfig, IBM5160_MOTHERBOARD, "IBM5160_MOTHERBOARD", tag, owner, clock, "ibm5160_mb", __FILE__), m_maincpu(*owner, "maincpu"), m_pic8259(*this, "pic8259"), m_dma8237(*this, "dma8237"), |