summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/sprint4.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/sprint4.h')
-rw-r--r--src/mame/includes/sprint4.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/sprint4.h b/src/mame/includes/sprint4.h
index c5a92031656..7f8e26454cd 100644
--- a/src/mame/includes/sprint4.h
+++ b/src/mame/includes/sprint4.h
@@ -11,7 +11,9 @@ public:
m_videoram(*this, "videoram"),
m_maincpu(*this, "maincpu"),
m_discrete(*this, "discrete"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
required_shared_ptr<UINT8> m_videoram;
int m_da_latch;
@@ -52,6 +54,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);