summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/kramermc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/kramermc.h')
-rw-r--r--src/mess/includes/kramermc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mess/includes/kramermc.h b/src/mess/includes/kramermc.h
index d058d3707f8..abde8e8a8a1 100644
--- a/src/mess/includes/kramermc.h
+++ b/src/mess/includes/kramermc.h
@@ -15,7 +15,8 @@ public:
kramermc_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
UINT8 m_key_row;
DECLARE_DRIVER_INIT(kramermc);
@@ -27,6 +28,7 @@ public:
DECLARE_WRITE8_MEMBER(kramermc_port_a_w);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};