summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gaplus.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-04-11 10:20:21 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-04-11 10:20:21 +0000
commit2f4ecc85e38c10ca05b8d0a13f958e1254829338 (patch)
treeecea9c807feea44ce1bc5b59e1545cfb023e4bad /src/mame/includes/gaplus.h
parentc62cc05f9624b1b33fb796edde41f67d5c4ee432 (diff)
same for "sub" and "subcpu" (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 1498db3fcac..666d6aa78a6 100644
--- a/src/mame/includes/gaplus.h
+++ b/src/mame/includes/gaplus.h
@@ -14,7 +14,8 @@ public:
m_customio_3(*this,"customio_3"),
m_videoram(*this,"videoram"),
m_spriteram(*this,"spriteram") ,
- m_maincpu(*this, "maincpu") { }
+ m_maincpu(*this, "maincpu"),
+ m_subcpu(*this, "sub") { }
required_shared_ptr<UINT8> m_customio_3;
required_shared_ptr<UINT8> m_videoram;
@@ -56,4 +57,5 @@ public:
void starfield_render(bitmap_ind16 &bitmap);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect );
required_device<cpu_device> m_maincpu;
+ required_device<cpu_device> m_subcpu;
};