summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/ym2151.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/ym2151.h')
-rw-r--r--src/devices/sound/ym2151.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/devices/sound/ym2151.h b/src/devices/sound/ym2151.h
index ee32c6f3ed6..d5e455f3fbd 100644
--- a/src/devices/sound/ym2151.h
+++ b/src/devices/sound/ym2151.h
@@ -282,10 +282,19 @@ protected:
virtual void write_reg(int r, int v) override;
};
+// ======================> ym2414_device
+
+class ym2414_device : public ym2151_device
+{
+public:
+ // construction/destruction
+ ym2414_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+};
// device type definition
DECLARE_DEVICE_TYPE(YM2151, ym2151_device)
DECLARE_DEVICE_TYPE(YM2164, ym2164_device)
+DECLARE_DEVICE_TYPE(YM2414, ym2414_device)
#endif // MAME_SOUND_YM2151_H