summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/tlc34076.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video/tlc34076.h')
-rw-r--r--src/emu/video/tlc34076.h21
1 files changed, 20 insertions, 1 deletions
diff --git a/src/emu/video/tlc34076.h b/src/emu/video/tlc34076.h
index 4581b4f5d4e..62d03d0d2cb 100644
--- a/src/emu/video/tlc34076.h
+++ b/src/emu/video/tlc34076.h
@@ -25,7 +25,26 @@ struct _tlc34076_config
extern const tlc34076_config tlc34076_6_bit_intf;
-DECLARE_LEGACY_DEVICE(TLC34076, tlc34076);
+class tlc34076_device : public device_t
+{
+public:
+ tlc34076_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ ~tlc34076_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_reset();
+private:
+ // internal state
+ void *m_token;
+};
+
+extern const device_type TLC34076;
+
/***************************************************************************