summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/marineb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/marineb.h')
-rw-r--r--src/mame/includes/marineb.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/marineb.h b/src/mame/includes/marineb.h
index 37a45045bc2..b1e6970c65f 100644
--- a/src/mame/includes/marineb.h
+++ b/src/mame/includes/marineb.h
@@ -8,7 +8,8 @@ public:
m_colorram(*this, "colorram"),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
required_shared_ptr<UINT8> m_videoram;
required_shared_ptr<UINT8> m_spriteram;
@@ -27,6 +28,7 @@ public:
required_device<cpu_device> m_maincpu;
optional_device<cpu_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
UINT8 m_irq_mask;
DECLARE_WRITE8_MEMBER(irq_mask_w);