summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mrflea.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mrflea.h')
-rw-r--r--src/mame/includes/mrflea.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/mrflea.h b/src/mame/includes/mrflea.h
index 9c8c1735cfb..6b04eeac27a 100644
--- a/src/mame/includes/mrflea.h
+++ b/src/mame/includes/mrflea.h
@@ -13,7 +13,9 @@ public:
m_spriteram(*this, "spriteram"),
m_maincpu(*this, "maincpu"),
m_subcpu(*this, "sub"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_videoram;
@@ -33,6 +35,8 @@ public:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_subcpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
DECLARE_WRITE8_MEMBER(mrflea_main_w);
DECLARE_WRITE8_MEMBER(mrflea_io_w);