summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gaplus.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-04-10 09:01:10 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-04-10 09:01:10 +0000
commit1da9a7259b83e14d86abe8e66828ad1a6b5cc87c (patch)
treed4f610caed37d03ff0d9a412aec8e017ea713e24 /src/mame/includes/gaplus.h
parent9be192b9a41faf1f4f9d9b719440440d88671887 (diff)
added m_maincpu to the rest of drivers in mame (nw)
Diffstat (limited to 'src/mame/includes/gaplus.h')
-rw-r--r--src/mame/includes/gaplus.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/gaplus.h b/src/mame/includes/gaplus.h
index 5c70100ca3b..1498db3fcac 100644
--- a/src/mame/includes/gaplus.h
+++ b/src/mame/includes/gaplus.h
@@ -13,7 +13,8 @@ public:
: driver_device(mconfig, type, tag),
m_customio_3(*this,"customio_3"),
m_videoram(*this,"videoram"),
- m_spriteram(*this,"spriteram") { }
+ m_spriteram(*this,"spriteram") ,
+ m_maincpu(*this, "maincpu") { }
required_shared_ptr<UINT8> m_customio_3;
required_shared_ptr<UINT8> m_videoram;
@@ -54,4 +55,5 @@ public:
void starfield_init();
void starfield_render(bitmap_ind16 &bitmap);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect );
+ required_device<cpu_device> m_maincpu;
};