summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video
diff options
context:
space:
mode:
author Scott Stone <tafoid@gmail.com>2016-03-18 17:52:26 -0400
committer Scott Stone <tafoid@gmail.com>2016-03-18 17:52:26 -0400
commit25c74dcfc65171d492af1be58df83a0d38ad67cc (patch)
tree68c482c0220c6b5ef3d14459091d0c297cdd6b46 /src/devices/video
parentb79020559ea3617b2d6bd4c92041d314045e2938 (diff)
Clarify device/short names for HD63484 (nw)
Diffstat (limited to 'src/devices/video')
-rw-r--r--src/devices/video/h63484.cpp2
-rw-r--r--src/devices/video/hd63484.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/h63484.cpp b/src/devices/video/h63484.cpp
index 2ae38362913..07098bfdb10 100644
--- a/src/devices/video/h63484.cpp
+++ b/src/devices/video/h63484.cpp
@@ -29,7 +29,7 @@ ADDRESS_MAP_END
//-------------------------------------------------
h63484_device::h63484_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, H63484, "HD63484 CRTC (rewrite)", tag, owner, clock, "h63484", __FILE__),
+ : device_t(mconfig, H63484, "HD63484 CRTC", tag, owner, clock, "hd63484", __FILE__),
device_memory_interface(mconfig, *this),
device_video_interface(mconfig, *this),
m_ar(0),
diff --git a/src/devices/video/hd63484.cpp b/src/devices/video/hd63484.cpp
index 9dab25d3669..6dfb998898d 100644
--- a/src/devices/video/hd63484.cpp
+++ b/src/devices/video/hd63484.cpp
@@ -28,7 +28,7 @@
const device_type HD63484 = &device_creator<hd63484_device>;
hd63484_device::hd63484_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, HD63484, "HD63484 CRTC", tag, owner, clock, "hd63484", __FILE__),
+ : device_t(mconfig, HD63484, "HD63484 CRTC (Legacy)", tag, owner, clock, "hd63484l", __FILE__),
m_ram(nullptr),
m_fifo_counter(0),
m_readfifo(0),