From ac6053ecb0c1d2cea91fc2bd4aa72d9e3df6b41f Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Tue, 27 Nov 2018 21:52:59 +1100 Subject: [PATCH] metadata and flags (nw) --- src/devices/bus/hp_dio/hp98550.cpp | 2 +- src/devices/bus/sbus/cgsix.h | 2 ++ src/devices/bus/sbus/cgthree.h | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/devices/bus/hp_dio/hp98550.cpp b/src/devices/bus/hp_dio/hp98550.cpp index 6e01255ce41..28d87d5a52f 100644 --- a/src/devices/bus/hp_dio/hp98550.cpp +++ b/src/devices/bus/hp_dio/hp98550.cpp @@ -23,7 +23,7 @@ ROM_START(hp98550) ROM_LOAD("98550a.bin", 0x000000, 0x008000, CRC(9d639233) SHA1(d6b23a34850f24525ca5fb36de3deb91196d2dc5)) ROM_END -DEFINE_DEVICE_TYPE_NS(HPDIO_98550, bus::hp_dio, dio32_98550_device, "dio98550", "HP98550 high-res color DIO video card") +DEFINE_DEVICE_TYPE_NS(HPDIO_98550, bus::hp_dio, dio32_98550_device, "dio98550", "HP98550A high-res color DIO video card") namespace bus { namespace hp_dio { diff --git a/src/devices/bus/sbus/cgsix.h b/src/devices/bus/sbus/cgsix.h index 4e3302799c1..e74ef2d97cb 100644 --- a/src/devices/bus/sbus/cgsix.h +++ b/src/devices/bus/sbus/cgsix.h @@ -18,6 +18,8 @@ class sbus_cgsix_device : public device_t, public device_sbus_card_interface { protected: + static constexpr feature_type imperfect_features() { return feature::GRAPHICS; } + // construction/destruction sbus_cgsix_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, const uint32_t vram_size) : sbus_cgsix_device(mconfig, type, tag, owner, clock) diff --git a/src/devices/bus/sbus/cgthree.h b/src/devices/bus/sbus/cgthree.h index df016a55de7..9b99d4a2fba 100644 --- a/src/devices/bus/sbus/cgthree.h +++ b/src/devices/bus/sbus/cgthree.h @@ -17,6 +17,8 @@ class sbus_cgthree_device : public device_t, public device_sbus_card_interface { public: + static constexpr feature_type imperfect_features() { return feature::GRAPHICS; } + // construction/destruction sbus_cgthree_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);