summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tecmo16.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tecmo16.h')
-rw-r--r--src/mame/includes/tecmo16.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/tecmo16.h b/src/mame/includes/tecmo16.h
index 11188d0104a..1c482600ec7 100644
--- a/src/mame/includes/tecmo16.h
+++ b/src/mame/includes/tecmo16.h
@@ -13,7 +13,9 @@ public:
m_spriteram(*this, "spriteram"),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
required_shared_ptr<UINT16> m_videoram;
required_shared_ptr<UINT16> m_colorram;
@@ -58,4 +60,6 @@ public:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};