summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/tiaintf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/tiaintf.h')
-rw-r--r--src/emu/sound/tiaintf.h25
1 files changed, 24 insertions, 1 deletions
diff --git a/src/emu/sound/tiaintf.h b/src/emu/sound/tiaintf.h
index bb8b05cb1c1..6ce175789b4 100644
--- a/src/emu/sound/tiaintf.h
+++ b/src/emu/sound/tiaintf.h
@@ -7,6 +7,29 @@
WRITE8_DEVICE_HANDLER( tia_sound_w );
-DECLARE_LEGACY_SOUND_DEVICE(TIA, tia);
+class tia_device : public device_t,
+ public device_sound_interface
+{
+public:
+ tia_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ ~tia_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();
+
+ // 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 TIA;
+
#endif /* __TIAINTF_H__ */