summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/msisaac.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/msisaac.h')
-rw-r--r--src/mame/includes/msisaac.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/msisaac.h b/src/mame/includes/msisaac.h
index 9daafd96ad7..75d2987fd6a 100644
--- a/src/mame/includes/msisaac.h
+++ b/src/mame/includes/msisaac.h
@@ -16,7 +16,8 @@ public:
m_maincpu(*this, "maincpu"),
m_bmcu(*this, "bmcu"),
m_msm(*this, "msm"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_spriteram;
@@ -54,6 +55,7 @@ public:
optional_device<buggychl_mcu_device> m_bmcu;
required_device<msm5232_device> m_msm;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
DECLARE_WRITE8_MEMBER(sound_command_w);
DECLARE_WRITE8_MEMBER(nmi_disable_w);