summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/twin16.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/twin16.h')
-rw-r--r--src/mame/includes/twin16.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/twin16.h b/src/mame/includes/twin16.h
index 5c979b5b881..6aa39553b81 100644
--- a/src/mame/includes/twin16.h
+++ b/src/mame/includes/twin16.h
@@ -17,7 +17,9 @@ public:
m_subcpu(*this, "sub"),
m_k007232(*this, "k007232"),
m_upd7759(*this, "upd"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
required_device<buffered_spriteram16_device> m_spriteram;
required_shared_ptr<UINT16> m_text_ram;
@@ -74,6 +76,8 @@ public:
required_device<k007232_device> m_k007232;
required_device<upd7759_device> m_upd7759;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};
class cuebrickj_state : public twin16_state