summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/pc1251.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/pc1251.h')
-rw-r--r--src/mess/includes/pc1251.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mess/includes/pc1251.h b/src/mess/includes/pc1251.h
index 687384cbd2a..98b40714732 100644
--- a/src/mess/includes/pc1251.h
+++ b/src/mess/includes/pc1251.h
@@ -26,7 +26,8 @@ public:
pc1251_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_outa;
UINT8 m_outb;
@@ -49,6 +50,7 @@ public:
DECLARE_MACHINE_START(pc1260);
required_device<sc61860_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
protected:
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);