summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/diverboy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/diverboy.cpp')
-rw-r--r--src/mame/drivers/diverboy.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/diverboy.cpp b/src/mame/drivers/diverboy.cpp
index 504a75d817c..90bd9101888 100644
--- a/src/mame/drivers/diverboy.cpp
+++ b/src/mame/drivers/diverboy.cpp
@@ -73,6 +73,9 @@ public:
m_palette(*this, "palette"),
m_soundlatch(*this, "soundlatch") { }
+ void diverboy(machine_config &config);
+
+private:
/* memory pointers */
required_shared_ptr<uint16_t> m_spriteram;
@@ -91,7 +94,6 @@ public:
virtual void video_start() override;
uint32_t screen_update_diverboy(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
- void diverboy(machine_config &config);
void diverboy_map(address_map &map);
void snd_map(address_map &map);
};