summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/hd63484.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video/hd63484.h')
-rw-r--r--src/emu/video/hd63484.h21
1 files changed, 20 insertions, 1 deletions
diff --git a/src/emu/video/hd63484.h b/src/emu/video/hd63484.h
index 26a5c742d89..1ef5fafbd6d 100644
--- a/src/emu/video/hd63484.h
+++ b/src/emu/video/hd63484.h
@@ -14,7 +14,26 @@
TYPE DEFINITIONS
***************************************************************************/
-DECLARE_LEGACY_DEVICE(HD63484, hd63484);
+class hd63484_device : public device_t
+{
+public:
+ hd63484_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ ~hd63484_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 HD63484;
+
#define HD63484_RAM_SIZE 0x100000