summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/pass.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/pass.h')
-rw-r--r--src/mame/includes/pass.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/mame/includes/pass.h b/src/mame/includes/pass.h
index 1c343cc5948..c27be53d147 100644
--- a/src/mame/includes/pass.h
+++ b/src/mame/includes/pass.h
@@ -19,6 +19,12 @@ public:
{
}
+ void pass(machine_config &config);
+
+protected:
+ virtual void video_start() override;
+
+private:
DECLARE_WRITE16_MEMBER(pass_bg_videoram_w);
DECLARE_WRITE16_MEMBER(pass_fg_videoram_w);
TILE_GET_INFO_MEMBER(get_pass_bg_tile_info);
@@ -26,14 +32,10 @@ public:
uint32_t screen_update_pass(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void pass(machine_config &config);
void pass_map(address_map &map);
void pass_sound_io_map(address_map &map);
void pass_sound_map(address_map &map);
-protected:
- virtual void video_start() override;
-private:
tilemap_t *m_bg_tilemap;
tilemap_t *m_fg_tilemap;