summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/odyssey.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/odyssey.cpp')
-rw-r--r--src/mame/drivers/odyssey.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/odyssey.cpp b/src/mame/drivers/odyssey.cpp
index 34ede8f555b..7e88e16b326 100644
--- a/src/mame/drivers/odyssey.cpp
+++ b/src/mame/drivers/odyssey.cpp
@@ -77,13 +77,15 @@ public:
m_maincpu(*this, "maincpu")
{ }
+ void odyssey(machine_config &config);
+
+private:
required_device<cpu_device> m_maincpu;
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
- void odyssey(machine_config &config);
void odyssey_map(address_map &map);
};