summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/2612intf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/2612intf.h')
-rw-r--r--src/devices/sound/2612intf.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/devices/sound/2612intf.h b/src/devices/sound/2612intf.h
index 42f2577a5fb..eceb0ce4e6e 100644
--- a/src/devices/sound/2612intf.h
+++ b/src/devices/sound/2612intf.h
@@ -35,7 +35,6 @@ protected:
// sound stream update overrides
virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override;
- void * m_chip;
private:
void irq_handler(int irq);
void timer_handler(int c, int count, int clock);
@@ -48,6 +47,7 @@ private:
sound_stream * m_stream;
emu_timer * m_timer[2];
+ void * m_chip;
devcb_write_line m_irq_handler;
};
@@ -59,20 +59,7 @@ public:
};
-class ymf276_device : public ym2612_device
-{
-public:
- ymf276_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
-
-protected:
- // sound stream update overrides
- virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override;
-
-};
-
-
DECLARE_DEVICE_TYPE(YM2612, ym2612_device)
DECLARE_DEVICE_TYPE(YM3438, ym3438_device)
-DECLARE_DEVICE_TYPE(YMF276, ymf276_device)
#endif // MAME_SOUND_2612INTF_H