summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/orbit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/orbit.h')
-rw-r--r--src/mame/includes/orbit.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/orbit.h b/src/mame/includes/orbit.h
index 069e0fc7785..29524a483e7 100644
--- a/src/mame/includes/orbit.h
+++ b/src/mame/includes/orbit.h
@@ -24,7 +24,9 @@ public:
m_sprite_ram(*this, "sprite_ram"),
m_discrete(*this, "discrete"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_playfield_ram;
@@ -42,6 +44,8 @@ public:
/* devices */
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
DECLARE_WRITE8_MEMBER(orbit_misc_w);
DECLARE_WRITE8_MEMBER(orbit_playfield_w);