summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/d9final.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/d9final.cpp')
-rw-r--r--src/mame/drivers/d9final.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/d9final.cpp b/src/mame/drivers/d9final.cpp
index 9a777f0f016..e0d063fb1e7 100644
--- a/src/mame/drivers/d9final.cpp
+++ b/src/mame/drivers/d9final.cpp
@@ -45,6 +45,9 @@ public:
m_hi_vram(*this, "hi_vram"),
m_cram(*this, "cram") { }
+ void d9final(machine_config &config);
+
+private:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
@@ -66,7 +69,6 @@ public:
virtual void video_start() override;
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void d9final(machine_config &config);
void d9final_io(address_map &map);
void d9final_map(address_map &map);
};