summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/redclash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/redclash.h')
-rw-r--r--src/mame/includes/redclash.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/mame/includes/redclash.h b/src/mame/includes/redclash.h
index 58c9bce1f9f..27b568749c0 100644
--- a/src/mame/includes/redclash.h
+++ b/src/mame/includes/redclash.h
@@ -28,13 +28,15 @@ public:
, m_stars(*this, "stars")
{ }
- DECLARE_INPUT_CHANGED_MEMBER(left_coin_inserted);
- DECLARE_INPUT_CHANGED_MEMBER(right_coin_inserted);
- void init_redclash();
void redclash(machine_config &config);
void zerohour(machine_config &config);
-protected:
+ void init_redclash();
+
+ DECLARE_INPUT_CHANGED_MEMBER(left_coin_inserted);
+ DECLARE_INPUT_CHANGED_MEMBER(right_coin_inserted);
+
+private:
DECLARE_WRITE_LINE_MEMBER(screen_vblank_redclash);
DECLARE_WRITE8_MEMBER(redclash_videoram_w);
DECLARE_WRITE8_MEMBER(redclash_gfxbank_w);
@@ -55,7 +57,6 @@ protected:
void redclash_map(address_map &map);
void zerohour_map(address_map &map);
-private:
required_shared_ptr<uint8_t> m_videoram;
required_shared_ptr<uint8_t> m_spriteram;
required_device<cpu_device> m_maincpu;