summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/suna16.h
diff options
context:
space:
mode:
author David Haywood <mamehaze@users.noreply.github.com>2015-08-04 11:23:49 +0100
committer David Haywood <mamehaze@users.noreply.github.com>2015-08-04 11:23:49 +0100
commitead98c56a6d2a268652e0de619cee262b0c84cfb (patch)
tree9864c223062afcd87c689e05b5f7708960f96794 /src/mame/includes/suna16.h
parent66778312f33c5d4fd308d6245d9cc07c619f9930 (diff)
fix MT06007
Diffstat (limited to 'src/mame/includes/suna16.h')
-rw-r--r--src/mame/includes/suna16.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mame/includes/suna16.h b/src/mame/includes/suna16.h
index 3683bf6cc1d..572fe87365a 100644
--- a/src/mame/includes/suna16.h
+++ b/src/mame/includes/suna16.h
@@ -16,7 +16,11 @@ public:
m_screen(*this, "screen"),
m_palette(*this, "palette"),
m_spriteram(*this, "spriteram"),
- m_spriteram2(*this, "spriteram2")
+ m_spriteram2(*this, "spriteram2"),
+ m_bank1(*this, "bank1"),
+ m_bank2(*this, "bank2")
+
+
{ }
required_device<cpu_device> m_maincpu;
@@ -31,6 +35,10 @@ public:
required_shared_ptr<UINT16> m_spriteram;
optional_shared_ptr<UINT16> m_spriteram2;
+ optional_memory_bank m_bank1;
+ optional_memory_bank m_bank2;
+
+
UINT16 *m_paletteram;
int m_color_bank;
UINT8 m_prot;