diff options
author | 2016-03-18 17:52:26 -0400 | |
---|---|---|
committer | 2016-03-18 17:52:26 -0400 | |
commit | 25c74dcfc65171d492af1be58df83a0d38ad67cc (patch) | |
tree | 68c482c0220c6b5ef3d14459091d0c297cdd6b46 | |
parent | b79020559ea3617b2d6bd4c92041d314045e2938 (diff) |
Clarify device/short names for HD63484 (nw)
-rw-r--r-- | src/devices/video/h63484.cpp | 2 | ||||
-rw-r--r-- | src/devices/video/hd63484.cpp | 2 |
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), |