summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/videopin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/videopin.h')
-rw-r--r--src/mame/includes/videopin.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/videopin.h b/src/mame/includes/videopin.h
index 73fe699f7f9..1f5efd09832 100644
--- a/src/mame/includes/videopin.h
+++ b/src/mame/includes/videopin.h
@@ -28,7 +28,9 @@ public:
m_video_ram(*this, "video_ram"),
m_maincpu(*this, "maincpu"),
m_discrete(*this, "discrete"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
attotime m_time_pushed;
attotime m_time_released;
@@ -56,6 +58,8 @@ public:
required_device<cpu_device> m_maincpu;
required_device<discrete_device> m_discrete;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
protected:
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);