summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/nycaptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/nycaptor.h')
-rw-r--r--src/mame/includes/nycaptor.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/nycaptor.h b/src/mame/includes/nycaptor.h
index 8d6ac767498..10edca6b253 100644
--- a/src/mame/includes/nycaptor.h
+++ b/src/mame/includes/nycaptor.h
@@ -14,7 +14,8 @@ public:
m_subcpu(*this, "sub"),
m_mcu(*this, "mcu"),
m_msm(*this, "msm"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_videoram;
@@ -61,6 +62,7 @@ public:
optional_device<cpu_device> m_mcu;
required_device<msm5232_device> m_msm;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
DECLARE_WRITE8_MEMBER(sub_cpu_halt_w);
DECLARE_READ8_MEMBER(from_snd_r);