summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gomoku.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gomoku.h')
-rw-r--r--src/mame/includes/gomoku.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/gomoku.h b/src/mame/includes/gomoku.h
index 3aacf184cf6..4fbaad1ccb9 100644
--- a/src/mame/includes/gomoku.h
+++ b/src/mame/includes/gomoku.h
@@ -19,6 +19,9 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen") { }
+ void gomoku(machine_config &config);
+
+private:
required_shared_ptr<uint8_t> m_videoram;
required_shared_ptr<uint8_t> m_colorram;
required_shared_ptr<uint8_t> m_bgram;
@@ -40,7 +43,6 @@ public:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
- void gomoku(machine_config &config);
void gomoku_map(address_map &map);
};