summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/rpunch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/rpunch.h')
-rw-r--r--src/mame/includes/rpunch.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/rpunch.h b/src/mame/includes/rpunch.h
index 822904f5a08..b7e7a80898a 100644
--- a/src/mame/includes/rpunch.h
+++ b/src/mame/includes/rpunch.h
@@ -13,7 +13,9 @@ public:
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
m_upd7759(*this, "upd"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
required_shared_ptr<UINT16> m_videoram;
UINT8 m_sound_data;
@@ -57,4 +59,6 @@ public:
required_device<cpu_device> m_audiocpu;
required_device<upd7759_device> m_upd7759;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};