summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/aceex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/aceex.cpp')
-rw-r--r--src/mame/drivers/aceex.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/drivers/aceex.cpp b/src/mame/drivers/aceex.cpp
index 1ab43c466df..d4830b3906f 100644
--- a/src/mame/drivers/aceex.cpp
+++ b/src/mame/drivers/aceex.cpp
@@ -56,10 +56,13 @@ public:
: driver_device(mconfig, type, tag)
,m_maincpu(*this, "maincpu")
{ }
+
+ void aceex2814(machine_config &config);
+
+private:
virtual void machine_start() override;
virtual void machine_reset() override;
required_device<cpu_device> m_maincpu;
- void aceex2814(machine_config &config);
void aceex2814_map(address_map &map);
};