summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bzone.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bzone.h')
-rw-r--r--src/mame/includes/bzone.h24
1 files changed, 23 insertions, 1 deletions
diff --git a/src/mame/includes/bzone.h b/src/mame/includes/bzone.h
index ae7a94a54ba..69352a887ad 100644
--- a/src/mame/includes/bzone.h
+++ b/src/mame/includes/bzone.h
@@ -37,4 +37,26 @@ MACHINE_CONFIG_EXTERN( bzone_audio );
WRITE8_DEVICE_HANDLER( redbaron_sounds_w );
-DECLARE_LEGACY_SOUND_DEVICE(REDBARON, redbaron_sound);
+class redbaron_sound_device : public device_t,
+ public device_sound_interface
+{
+public:
+ redbaron_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ ~redbaron_sound_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();
+
+ // 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 REDBARON;
+