summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/rbisland.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/rbisland.h')
-rw-r--r--src/mame/includes/rbisland.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/rbisland.h b/src/mame/includes/rbisland.h
index ca521e489e2..cbbb445416a 100644
--- a/src/mame/includes/rbisland.h
+++ b/src/mame/includes/rbisland.h
@@ -8,6 +8,7 @@
#include "video/pc080sn.h"
#include "video/pc090oj.h"
+#include "machine/cchip_dev.h"
class rbisland_state : public driver_device
{
@@ -17,6 +18,7 @@ public:
m_spriteram(*this, "spriteram"),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
+ m_cchip(*this, "cchip"),
m_pc080sn(*this, "pc080sn"),
m_pc090oj(*this, "pc090oj"),
m_gfxdecode(*this, "gfxdecode"),
@@ -41,6 +43,7 @@ public:
/* devices */
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
+ optional_device<taito_cchip_device> m_cchip;
required_device<pc080sn_device> m_pc080sn;
optional_device<pc090oj_device> m_pc090oj;
required_device<gfxdecode_device> m_gfxdecode;