summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/unico.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/unico.h')
-rw-r--r--src/mame/includes/unico.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/unico.h b/src/mame/includes/unico.h
index aaec3a27b68..56fb606a09e 100644
--- a/src/mame/includes/unico.h
+++ b/src/mame/includes/unico.h
@@ -9,7 +9,9 @@ public:
m_maincpu(*this, "maincpu"),
m_oki(*this, "oki"),
m_eeprom(*this, "eeprom"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
UINT16* m_vram;
UINT16* m_scroll;
@@ -49,4 +51,6 @@ public:
optional_device<okim6295_device> m_oki;
optional_device<eeprom_serial_93cxx_device> m_eeprom;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};