summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2021-03-23 23:12:08 -0400
committer arbee <rb6502@users.noreply.github.com>2021-03-23 23:12:08 -0400
commit5bd267a7ed0a517e118fd66fbb6c604670f7bffd (patch)
tree70ec1ff9ce059ce3885d6f5862980133b2207e61
parent28313650206bfb7ac6c2e01ece1b1e5d2d6fef11 (diff)
asc.cpp: add IMPERFECT_SOUND flag to Apple Sound Chip for now. [R. Belmont]
-rw-r--r--src/devices/sound/asc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/sound/asc.h b/src/devices/sound/asc.h
index f1dff62ffc2..9848646e2bb 100644
--- a/src/devices/sound/asc.h
+++ b/src/devices/sound/asc.h
@@ -44,6 +44,8 @@ public:
asc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ static constexpr feature_type imperfect_features() { return feature::SOUND; }
+
void set_type(asc_type type) { m_chip_type = type; }
auto irqf_callback() { return write_irq.bind(); }