summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/astrocde.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/astrocde.h')
-rw-r--r--src/mame/includes/astrocde.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/astrocde.h b/src/mame/includes/astrocde.h
index 42c0576f6e7..a53a764d21a 100644
--- a/src/mame/includes/astrocde.h
+++ b/src/mame/includes/astrocde.h
@@ -34,7 +34,8 @@ public:
m_votrax(*this, "votrax"),
m_astrocade_sound1(*this, "astrocade1"),
m_videoram(*this, "videoram"),
- m_protected_ram(*this, "protected_ram") { }
+ m_protected_ram(*this, "protected_ram"),
+ m_screen(*this, "screen") { }
required_device<cpu_device> m_maincpu;
optional_device<cpu_device> m_subcpu;
@@ -43,6 +44,7 @@ public:
optional_device<astrocade_device> m_astrocade_sound1;
optional_shared_ptr<UINT8> m_videoram;
optional_shared_ptr<UINT8> m_protected_ram;
+ required_device<screen_device> m_screen;
UINT8 m_video_config;
UINT8 m_sparkle[4];