summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/suna16.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/suna16.h')
-rw-r--r--src/mame/includes/suna16.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/suna16.h b/src/mame/includes/suna16.h
index 7374cd5766e..54c6a75841e 100644
--- a/src/mame/includes/suna16.h
+++ b/src/mame/includes/suna16.h
@@ -12,7 +12,9 @@ public:
m_dac2(*this, "dac2"),
m_dac3(*this, "dac3"),
m_dac4(*this, "dac4"),
- m_gfxdecode(*this, "gfxdecode")
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette")
{ }
required_device<cpu_device> m_maincpu;
@@ -23,6 +25,8 @@ public:
optional_device<dac_device> m_dac3;
optional_device<dac_device> m_dac4;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
UINT8 m_prot;
UINT16 *m_paletteram;
int m_color_bank;