summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gumbo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gumbo.h')
-rw-r--r--src/mame/includes/gumbo.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/gumbo.h b/src/mame/includes/gumbo.h
index 79b3f180f4e..18508398713 100644
--- a/src/mame/includes/gumbo.h
+++ b/src/mame/includes/gumbo.h
@@ -10,7 +10,8 @@ public:
gumbo_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_bg_videoram(*this, "bg_videoram"),
- m_fg_videoram(*this, "fg_videoram"){ }
+ m_fg_videoram(*this, "fg_videoram"),
+ m_maincpu(*this, "maincpu") { }
/* memory pointers */
required_shared_ptr<UINT16> m_bg_videoram;
@@ -26,4 +27,5 @@ public:
TILE_GET_INFO_MEMBER(get_gumbo_fg_tile_info);
virtual void video_start();
UINT32 screen_update_gumbo(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ required_device<cpu_device> m_maincpu;
};