summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/segapm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/segapm.cpp')
-rw-r--r--src/mame/drivers/segapm.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/segapm.cpp b/src/mame/drivers/segapm.cpp
index 5d84438d845..bbed1cd5f25 100644
--- a/src/mame/drivers/segapm.cpp
+++ b/src/mame/drivers/segapm.cpp
@@ -21,10 +21,12 @@ public:
m_maincpu(*this, "maincpu")
{ }
+ void segapm(machine_config &config);
+
+private:
virtual void video_start() override;
uint32_t screen_update_segapm(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
- void segapm(machine_config &config);
void segapm_map(address_map &map);
};