summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/extrema.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/extrema.cpp')
-rw-r--r--src/mame/drivers/extrema.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/extrema.cpp b/src/mame/drivers/extrema.cpp
index e60b9751585..b1cd04802f9 100644
--- a/src/mame/drivers/extrema.cpp
+++ b/src/mame/drivers/extrema.cpp
@@ -23,8 +23,10 @@ public:
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu") { }
- required_device<cpu_device> m_maincpu;
void extrema(machine_config &config);
+
+private:
+ required_device<cpu_device> m_maincpu;
void extrema_map(address_map &map);
void extrema_portmap(address_map &map);
};