summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/toaplan2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/toaplan2.h')
-rw-r--r--src/mame/includes/toaplan2.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/toaplan2.h b/src/mame/includes/toaplan2.h
index f7da603956c..2a22bcb6517 100644
--- a/src/mame/includes/toaplan2.h
+++ b/src/mame/includes/toaplan2.h
@@ -39,7 +39,9 @@ public:
m_oki1(*this, "oki1"),
m_eeprom(*this, "eeprom"),
m_rtc(*this, "rtc"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
optional_shared_ptr<UINT8> m_shared_ram; // 8 bit RAM shared between 68K and sound CPU
optional_shared_ptr<UINT16> m_shared_ram16; // Really 8 bit RAM connected to Z180
@@ -60,6 +62,8 @@ public:
optional_device<eeprom_serial_93cxx_device> m_eeprom;
optional_device<upd4992_device> m_rtc;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
UINT16 m_mcu_data;
UINT16 m_video_status;