summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/hyprduel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/hyprduel.h')
-rw-r--r--src/mame/includes/hyprduel.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/hyprduel.h b/src/mame/includes/hyprduel.h
index 9eda5c8607b..24062ce78bd 100644
--- a/src/mame/includes/hyprduel.h
+++ b/src/mame/includes/hyprduel.h
@@ -24,7 +24,9 @@ public:
m_sharedram3(*this, "sharedram3"),
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<UINT16> m_vram_0;
@@ -65,6 +67,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_READ16_MEMBER(hyprduel_irq_cause_r);
DECLARE_WRITE16_MEMBER(hyprduel_irq_cause_w);