summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/multfish.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/multfish.h')
-rw-r--r--src/mame/includes/multfish.h40
1 files changed, 21 insertions, 19 deletions
diff --git a/src/mame/includes/multfish.h b/src/mame/includes/multfish.h
index af7120bb965..72059e43003 100644
--- a/src/mame/includes/multfish.h
+++ b/src/mame/includes/multfish.h
@@ -28,22 +28,9 @@ public:
m_lamps(*this, "lamp%u", 0U)
{ }
- DECLARE_WRITE8_MEMBER(igrosoft_gamble_vid_w);
- DECLARE_WRITE8_MEMBER(igrosoft_gamble_bank_w);
- DECLARE_READ8_MEMBER(bankedram_r);
- DECLARE_WRITE8_MEMBER(bankedram_w);
- DECLARE_WRITE8_MEMBER(igrosoft_gamble_rambank_w);
- DECLARE_READ8_MEMBER(ray_r);
- DECLARE_WRITE8_MEMBER(igrosoft_gamble_hopper_w);
- DECLARE_WRITE8_MEMBER(rollfr_hopper_w);
- DECLARE_WRITE8_MEMBER(igrosoft_gamble_lamps1_w);
- DECLARE_WRITE8_MEMBER(igrosoft_gamble_lamps2_w);
- DECLARE_WRITE8_MEMBER(igrosoft_gamble_lamps3_w);
- DECLARE_WRITE8_MEMBER(igrosoft_gamble_counters_w);
- DECLARE_WRITE8_MEMBER(igrosoft_gamble_f3_w);
- DECLARE_WRITE8_MEMBER(igrosoft_gamble_dispenable_w);
- DECLARE_READ8_MEMBER(igrosoft_gamble_timekeeper_r);
- DECLARE_WRITE8_MEMBER(igrosoft_gamble_timekeeper_w);
+ void rollfr(machine_config &config);
+ void igrosoft_gamble(machine_config &config);
+
void init_customl();
void init_island2l();
void init_keksl();
@@ -66,16 +53,31 @@ public:
void init_crzmon2();
void init_crzmon2lot();
void init_crzmon2ent();
+
+private:
+ DECLARE_WRITE8_MEMBER(igrosoft_gamble_vid_w);
+ DECLARE_WRITE8_MEMBER(igrosoft_gamble_bank_w);
+ DECLARE_READ8_MEMBER(bankedram_r);
+ DECLARE_WRITE8_MEMBER(bankedram_w);
+ DECLARE_WRITE8_MEMBER(igrosoft_gamble_rambank_w);
+ DECLARE_READ8_MEMBER(ray_r);
+ DECLARE_WRITE8_MEMBER(igrosoft_gamble_hopper_w);
+ DECLARE_WRITE8_MEMBER(rollfr_hopper_w);
+ DECLARE_WRITE8_MEMBER(igrosoft_gamble_lamps1_w);
+ DECLARE_WRITE8_MEMBER(igrosoft_gamble_lamps2_w);
+ DECLARE_WRITE8_MEMBER(igrosoft_gamble_lamps3_w);
+ DECLARE_WRITE8_MEMBER(igrosoft_gamble_counters_w);
+ DECLARE_WRITE8_MEMBER(igrosoft_gamble_f3_w);
+ DECLARE_WRITE8_MEMBER(igrosoft_gamble_dispenable_w);
+ DECLARE_READ8_MEMBER(igrosoft_gamble_timekeeper_r);
+ DECLARE_WRITE8_MEMBER(igrosoft_gamble_timekeeper_w);
TILE_GET_INFO_MEMBER(get_igrosoft_gamble_tile_info);
TILE_GET_INFO_MEMBER(get_igrosoft_gamble_reel_tile_info);
uint32_t screen_update_igrosoft_gamble(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void rollfr(machine_config &config);
- void igrosoft_gamble(machine_config &config);
void igrosoft_gamble_map(address_map &map);
void igrosoft_gamble_portmap(address_map &map);
void rollfr_portmap(address_map &map);
-protected:
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;