summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/vball.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/vball.h')
-rw-r--r--src/mame/includes/vball.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/includes/vball.h b/src/mame/includes/vball.h
index 2b3e457245e..4d576b8670d 100644
--- a/src/mame/includes/vball.h
+++ b/src/mame/includes/vball.h
@@ -22,6 +22,9 @@ public:
m_scrolly_lo(*this, "scrolly_lo"),
m_spriteram(*this, "spriteram") { }
+ void vball(machine_config &config);
+
+private:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
@@ -62,7 +65,7 @@ public:
void spprombank_w(int bank);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
inline int scanline_to_vcount(int scanline);
- void vball(machine_config &config);
+
void main_map(address_map &map);
void sound_map(address_map &map);
};