summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/chaknpop.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/chaknpop.h')
-rw-r--r--src/mame/includes/chaknpop.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/chaknpop.h b/src/mame/includes/chaknpop.h
index 7fd1c8079d3..993bf554f75 100644
--- a/src/mame/includes/chaknpop.h
+++ b/src/mame/includes/chaknpop.h
@@ -13,7 +13,8 @@ public:
m_attr_ram(*this, "attr_ram"),
m_spr_ram(*this, "spr_ram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_mcu_ram;
@@ -61,4 +62,5 @@ public:
void mcu_update_seed( UINT8 data );
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};