summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mole.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mole.cpp')
-rw-r--r--src/mame/drivers/mole.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/mole.cpp b/src/mame/drivers/mole.cpp
index ccd9a90593f..9ef150bbf90 100644
--- a/src/mame/drivers/mole.cpp
+++ b/src/mame/drivers/mole.cpp
@@ -66,6 +66,9 @@ public:
m_gfxdecode(*this, "gfxdecode")
{ }
+ void mole(machine_config &config);
+
+private:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
@@ -86,7 +89,6 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
uint32_t screen_update_mole(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void mole(machine_config &config);
void mole_map(address_map &map);
};