summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-11-27 21:52:59 +1100
committer Vas Crabb <vas@vastheman.com>2018-11-27 21:52:59 +1100
commitac6053ecb0c1d2cea91fc2bd4aa72d9e3df6b41f (patch)
tree4fb6f9d300893d2e082b00c5e19eb8119637eab3
parentfbdd163d0c57f14e38edd1f79d63136cee79f77d (diff)
metadata and flags (nw)
-rw-r--r--src/devices/bus/hp_dio/hp98550.cpp2
-rw-r--r--src/devices/bus/sbus/cgsix.h2
-rw-r--r--src/devices/bus/sbus/cgthree.h2
3 files changed, 5 insertions, 1 deletions
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);