summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/volfied.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/volfied.h')
-rw-r--r--src/mame/includes/volfied.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/includes/volfied.h b/src/mame/includes/volfied.h
index cacb8b48788..952ec228abf 100644
--- a/src/mame/includes/volfied.h
+++ b/src/mame/includes/volfied.h
@@ -18,7 +18,8 @@ public:
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
- m_pc090oj(*this, "pc090oj") { }
+ m_pc090oj(*this, "pc090oj"),
+ m_screen(*this, "screen") { }
/* memory pointers */
UINT16 * m_video_ram;
@@ -39,6 +40,8 @@ public:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_device<pc090oj_device> m_pc090oj;
+ required_device<screen_device> m_screen;
+
DECLARE_WRITE16_MEMBER(volfied_cchip_ctrl_w);
DECLARE_WRITE16_MEMBER(volfied_cchip_bank_w);
DECLARE_WRITE16_MEMBER(volfied_cchip_ram_w);