summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/fastlane.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/fastlane.h')
-rw-r--r--src/mame/includes/fastlane.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/fastlane.h b/src/mame/includes/fastlane.h
index 25fb486269a..f536427680e 100644
--- a/src/mame/includes/fastlane.h
+++ b/src/mame/includes/fastlane.h
@@ -30,6 +30,9 @@ public:
m_screen(*this, "screen"),
m_palette(*this, "palette") { }
+ void fastlane(machine_config &config);
+
+private:
required_device<cpu_device> m_maincpu;
/* memory pointers */
@@ -69,6 +72,5 @@ public:
TIMER_DEVICE_CALLBACK_MEMBER(fastlane_scanline);
DECLARE_WRITE8_MEMBER(volume_callback0);
DECLARE_WRITE8_MEMBER(volume_callback1);
- void fastlane(machine_config &config);
void fastlane_map(address_map &map);
};