summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mermaid.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mermaid.h')
-rw-r--r--src/mame/includes/mermaid.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/mermaid.h b/src/mame/includes/mermaid.h
index d0e3a6c6c4a..e9c724e0873 100644
--- a/src/mame/includes/mermaid.h
+++ b/src/mame/includes/mermaid.h
@@ -22,7 +22,9 @@ public:
m_adpcm(*this, "adpcm"),
m_ay1(*this, "ay1"),
m_ay2(*this, "ay2"),
- m_gfxdecode(*this, "gfxdecode")
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette")
{
}
@@ -63,6 +65,8 @@ public:
required_device<ay8910_device> m_ay1;
required_device<ay8910_device> m_ay2;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
UINT8 m_nmi_mask;
DECLARE_WRITE8_MEMBER(mermaid_ay8910_write_port_w);