summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gotya.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gotya.h')
-rw-r--r--src/mame/includes/gotya.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/gotya.h b/src/mame/includes/gotya.h
index cf05e0e119b..caa111e0c1c 100644
--- a/src/mame/includes/gotya.h
+++ b/src/mame/includes/gotya.h
@@ -18,6 +18,9 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
+ void gotya(machine_config &config);
+
+private:
/* memory pointers */
required_shared_ptr<uint8_t> m_scroll;
required_shared_ptr<uint8_t> m_videoram;
@@ -51,6 +54,5 @@ public:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- void gotya(machine_config &config);
void gotya_map(address_map &map);
};