summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/diverboy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/diverboy.c')
-rw-r--r--src/mame/drivers/diverboy.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/drivers/diverboy.c b/src/mame/drivers/diverboy.c
index 798b2adf499..13531059fef 100644
--- a/src/mame/drivers/diverboy.c
+++ b/src/mame/drivers/diverboy.c
@@ -62,7 +62,9 @@ public:
m_audiocpu(*this, "audiocpu"),
m_maincpu(*this, "maincpu"),
m_oki(*this, "oki"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT16> m_spriteram;
@@ -79,6 +81,8 @@ public:
required_device<cpu_device> m_maincpu;
required_device<okim6295_device> m_oki;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};