summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/galivan.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/galivan.h')
-rw-r--r--src/mame/includes/galivan.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/galivan.h b/src/mame/includes/galivan.h
index aa8d425bcbf..fdc56056b79 100644
--- a/src/mame/includes/galivan.h
+++ b/src/mame/includes/galivan.h
@@ -4,6 +4,7 @@
***************************************************************************/
+#include "includes/nb1414m4.h"
#include "video/bufsprite.h"
class galivan_state : public driver_device
@@ -14,6 +15,7 @@ public:
m_videoram(*this, "videoram"),
m_spriteram(*this, "spriteram"),
m_maincpu(*this, "maincpu"),
+ m_nb1414m4(*this, "nb1414m4"),
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
@@ -63,6 +65,7 @@ public:
UINT32 screen_update_ninjemak(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
required_device<cpu_device> m_maincpu;
+ optional_device<nb1414m4_device> m_nb1414m4;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
};