summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/surpratk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/surpratk.h')
-rw-r--r--src/mame/includes/surpratk.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/surpratk.h b/src/mame/includes/surpratk.h
index 92c9a5fe044..e1cd5d6b3df 100644
--- a/src/mame/includes/surpratk.h
+++ b/src/mame/includes/surpratk.h
@@ -18,7 +18,8 @@ public:
m_maincpu(*this, "maincpu"),
m_k052109(*this, "k052109"),
m_k053244(*this, "k053244"),
- m_k053251(*this, "k053251") { }
+ m_k053251(*this, "k053251"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_ram;
@@ -37,6 +38,7 @@ public:
required_device<k052109_device> m_k052109;
required_device<k05324x_device> m_k053244;
required_device<k053251_device> m_k053251;
+ required_device<palette_device> m_palette;
DECLARE_READ8_MEMBER(bankedram_r);
DECLARE_WRITE8_MEMBER(bankedram_w);
DECLARE_WRITE8_MEMBER(surpratk_videobank_w);