summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/maygaysw.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/maygaysw.cpp')
-rw-r--r--src/mame/drivers/maygaysw.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/drivers/maygaysw.cpp b/src/mame/drivers/maygaysw.cpp
index 23d1d144530..137b5b72fbc 100644
--- a/src/mame/drivers/maygaysw.cpp
+++ b/src/mame/drivers/maygaysw.cpp
@@ -108,9 +108,12 @@ public:
maygayew_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu") { }
- required_device<cpu_device> m_maincpu;
void maygayew(machine_config &config);
+
+private:
void maygayew_map(address_map &map);
+
+ required_device<cpu_device> m_maincpu;
};