summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tecmosys.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tecmosys.h')
-rw-r--r--src/mame/includes/tecmosys.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/tecmosys.h b/src/mame/includes/tecmosys.h
index fc95b32b926..7472d64830d 100644
--- a/src/mame/includes/tecmosys.h
+++ b/src/mame/includes/tecmosys.h
@@ -27,7 +27,9 @@ public:
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
m_eeprom(*this, "eeprom"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
required_shared_ptr<UINT16> m_spriteram;
required_shared_ptr<UINT16> m_tilemap_paletteram16;
@@ -97,4 +99,6 @@ public:
required_device<cpu_device> m_audiocpu;
required_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;
};