summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/2612intf.h
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2020-01-07 21:55:30 -0500
committer GitHub <noreply@github.com>2020-01-07 21:55:30 -0500
commit85f1dbd5f77cc666b604d77f797149fa2b73224c (patch)
treeec0167583a6ecad30c035fc5394d14acfcc633e7 /src/devices/sound/2612intf.h
parent8edc746b8d3d4ca7eb9e5ac0e4ac2de892fcfc13 (diff)
Revert "sound/2612intf.cpp : Add YMF276 device, Clamp output related to internal 9-bit DAC, Add notes"
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