summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/namcona1.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/namcona1.h')
-rw-r--r--src/mame/includes/namcona1.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/namcona1.h b/src/mame/includes/namcona1.h
index 07b96abc01c..fd4061cc18f 100644
--- a/src/mame/includes/namcona1.h
+++ b/src/mame/includes/namcona1.h
@@ -37,7 +37,9 @@ public:
m_workram(*this,"workram"),
m_vreg(*this,"vreg"),
m_scroll(*this,"scroll"),
- m_gfxdecode(*this, "gfxdecode")
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette")
{ }
required_device<cpu_device> m_maincpu;
@@ -49,6 +51,8 @@ public:
required_shared_ptr<UINT16> m_vreg;
required_shared_ptr<UINT16> m_scroll;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
UINT16 *m_mpBank0;
UINT16 *m_mpBank1;