summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/travrusa.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/travrusa.h')
-rw-r--r--src/mame/includes/travrusa.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/mame/includes/travrusa.h b/src/mame/includes/travrusa.h
index 4f4ce8f418f..e30890af45d 100644
--- a/src/mame/includes/travrusa.h
+++ b/src/mame/includes/travrusa.h
@@ -15,6 +15,15 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
+ void shtrider(machine_config &config);
+ void travrusa(machine_config &config);
+ void shtriderb(machine_config &config);
+
+ void init_shtridra();
+ void init_motorace();
+ void init_shtridrb();
+
+private:
/* memory pointers */
required_shared_ptr<uint8_t> m_videoram;
required_shared_ptr<uint8_t> m_spriteram;
@@ -27,9 +36,6 @@ public:
DECLARE_WRITE8_MEMBER(travrusa_scroll_x_high_w);
DECLARE_WRITE8_MEMBER(travrusa_flipscreen_w);
DECLARE_READ8_MEMBER(shtridrb_port11_r);
- void init_shtridra();
- void init_motorace();
- void init_shtridrb();
TILE_GET_INFO_MEMBER(get_tile_info);
virtual void machine_reset() override;
virtual void video_start() override;
@@ -41,8 +47,6 @@ public:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- void shtrider(machine_config &config);
- void travrusa(machine_config &config);
- void shtriderb(machine_config &config);
+
void main_map(address_map &map);
};