summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/bt47x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/bt47x.cpp')
-rw-r--r--src/devices/video/bt47x.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/devices/video/bt47x.cpp b/src/devices/video/bt47x.cpp
index 6244dc53b8f..1033054bc53 100644
--- a/src/devices/video/bt47x.cpp
+++ b/src/devices/video/bt47x.cpp
@@ -35,7 +35,7 @@
#include "logmacro.h"
DEFINE_DEVICE_TYPE(BT471, bt471_device, "bt471", "Brooktree Bt471 256 Color RAMDAC")
-//DEFINE_DEVICE_TYPE(BT473, bt473_device, "bt473", "Brooktree Bt473 True-Color RAMDAC")
+DEFINE_DEVICE_TYPE(BT473, bt473_device, "bt473", "Brooktree Bt473 True-Color RAMDAC")
//DEFINE_DEVICE_TYPE(BT474, bt474_device, "bt474", "Brooktree Bt474 256 Color RAMDAC")
DEFINE_DEVICE_TYPE(BT475, bt475_device, "bt475", "Brooktree Bt475 256 Color RAMDAC")
DEFINE_DEVICE_TYPE(BT476, bt476_device, "bt476", "Brooktree Bt476 256 Color RAMDAC")
@@ -154,6 +154,11 @@ bt471_device::bt471_device(machine_config const &mconfig, char const *tag, devic
{
}
+bt473_device::bt473_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock)
+ : bt47x_device_base(mconfig, BT473, tag, owner, clock, 256, 16, 8)
+{
+}
+
bt475_device::bt475_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock)
: bt475_device_base(mconfig, BT475, tag, owner, clock, 256, 16, 6)
{