summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/msm5232.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/msm5232.h')
-rw-r--r--src/emu/sound/msm5232.h26
1 files changed, 25 insertions, 1 deletions
diff --git a/src/emu/sound/msm5232.h b/src/emu/sound/msm5232.h
index f1dfaccc08c..174109a8702 100644
--- a/src/emu/sound/msm5232.h
+++ b/src/emu/sound/msm5232.h
@@ -16,6 +16,30 @@ WRITE8_DEVICE_HANDLER( msm5232_w );
void msm5232_set_clock(device_t *device, int clock);
-DECLARE_LEGACY_SOUND_DEVICE(MSM5232, msm5232);
+class msm5232_device : public device_t,
+ public device_sound_interface
+{
+public:
+ msm5232_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ ~msm5232_device() { global_free(m_token); }
+
+ // access to legacy token
+ void *token() const { assert(m_token != NULL); return m_token; }
+protected:
+ // device-level overrides
+ virtual void device_config_complete();
+ virtual void device_start();
+ virtual void device_stop();
+ virtual void device_reset();
+
+ // sound stream update overrides
+ virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples);
+private:
+ // internal state
+ void *m_token;
+};
+
+extern const device_type MSM5232;
+
#endif /* __MSM5232_H__ */