summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/ojankohs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/ojankohs.h')
-rw-r--r--src/mame/includes/ojankohs.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/ojankohs.h b/src/mame/includes/ojankohs.h
index 7d1812df684..8ea66c65e75 100644
--- a/src/mame/includes/ojankohs.h
+++ b/src/mame/includes/ojankohs.h
@@ -15,7 +15,9 @@ public:
m_paletteram(*this, "paletteram"),
m_maincpu(*this, "maincpu"),
m_msm(*this, "msm"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
/* memory pointers */
optional_shared_ptr<UINT8> m_videoram;
@@ -42,6 +44,8 @@ public:
required_device<cpu_device> m_maincpu;
required_device<msm5205_device> m_msm;
optional_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
DECLARE_WRITE8_MEMBER(ojankohs_rombank_w);
DECLARE_WRITE8_MEMBER(ojankoy_rombank_w);