summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/momoko.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/momoko.h')
-rw-r--r--src/mame/includes/momoko.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/momoko.h b/src/mame/includes/momoko.h
index 1a6289be577..c1f5b341ab0 100644
--- a/src/mame/includes/momoko.h
+++ b/src/mame/includes/momoko.h
@@ -21,6 +21,9 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
+ void momoko(machine_config &config);
+
+private:
/* memory pointers */
required_shared_ptr<uint8_t> m_spriteram;
required_shared_ptr<uint8_t> m_videoram;
@@ -56,7 +59,6 @@ public:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- void momoko(machine_config &config);
void momoko_map(address_map &map);
void momoko_sound_map(address_map &map);
};