summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gaplus.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-04-12 08:30:34 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-04-12 08:30:34 +0000
commit2938d4c348f4891590af3ce11f707947b83ad05d (patch)
treed1fcd28051b6311051db1e40be7cc637920de588 /src/mame/includes/gaplus.h
parent7a4840affd77dc7d9e3383170a1d239fe4a13a72 (diff)
some cleanup and vsnes change to compile on vs compile (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 666d6aa78a6..e8d1c483246 100644
--- a/src/mame/includes/gaplus.h
+++ b/src/mame/includes/gaplus.h
@@ -15,7 +15,8 @@ public:
m_videoram(*this,"videoram"),
m_spriteram(*this,"spriteram") ,
m_maincpu(*this, "maincpu"),
- m_subcpu(*this, "sub") { }
+ m_subcpu(*this, "sub"),
+ m_subcpu2(*this, "sub2") { }
required_shared_ptr<UINT8> m_customio_3;
required_shared_ptr<UINT8> m_videoram;
@@ -58,4 +59,5 @@ public:
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect );
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_subcpu;
+ required_device<cpu_device> m_subcpu2;
};