summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-11-10 14:55:34 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-11-10 14:55:34 -0500
commit9a06a7d23af77453c6b12a428befc1ee62ba2f80 (patch)
tree5d78eb9a14d9ef16ce296c51aa2828342c300d14
parentb1c292726bd7afb1d1ebc29058d45ffa60650917 (diff)
dp8390d, rtl8019a: Improve device names (nw)
-rw-r--r--src/devices/machine/dp8390.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/dp8390.cpp b/src/devices/machine/dp8390.cpp
index 874f301311e..c096bd7d208 100644
--- a/src/devices/machine/dp8390.cpp
+++ b/src/devices/machine/dp8390.cpp
@@ -6,8 +6,8 @@
#define DP8390_BYTE_ORDER(w) ((m_regs.dcr & 3) == 3 ? ((data << 8) | (data >> 8)) : data)
#define LOOPBACK (!(m_regs.dcr & 8) && (m_regs.tcr & 6))
-DEFINE_DEVICE_TYPE(DP8390D, dp8390d_device, "dp8390d", "DP8390D")
-DEFINE_DEVICE_TYPE(RTL8019A, rtl8019a_device, "rtl8019a", "RTL8019A")
+DEFINE_DEVICE_TYPE(DP8390D, dp8390d_device, "dp8390d", "DP8390D NIC")
+DEFINE_DEVICE_TYPE(RTL8019A, rtl8019a_device, "rtl8019a", "RTL8019A Ethernet Controller")
dp8390d_device::dp8390d_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: dp8390_device(mconfig, DP8390D, tag, owner, clock, TYPE::DP8390D, 10.0f)