summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/sbasketb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/sbasketb.h')
-rw-r--r--src/mame/includes/sbasketb.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/mame/includes/sbasketb.h b/src/mame/includes/sbasketb.h
index e39bc740b4b..0780c076d95 100644
--- a/src/mame/includes/sbasketb.h
+++ b/src/mame/includes/sbasketb.h
@@ -34,6 +34,12 @@ public:
m_palette(*this, "palette")
{ }
+ void sbasketb(machine_config &config);
+ void sbasketbu(machine_config &config);
+
+ void init_sbasketb();
+
+private:
/* memory pointers */
required_shared_ptr<uint8_t> m_colorram;
required_shared_ptr<uint8_t> m_videoram;
@@ -65,7 +71,6 @@ public:
DECLARE_WRITE8_MEMBER(sbasketb_colorram_w);
DECLARE_WRITE_LINE_MEMBER(flipscreen_w);
DECLARE_WRITE_LINE_MEMBER(spriteram_select_w);
- void init_sbasketb();
uint8_t m_SN76496_latch;
DECLARE_WRITE8_MEMBER( konami_SN76496_latch_w ) { m_SN76496_latch = data; };
@@ -76,8 +81,7 @@ public:
uint32_t screen_update_sbasketb(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
DECLARE_WRITE_LINE_MEMBER(vblank_irq);
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
- void sbasketb(machine_config &config);
- void sbasketbu(machine_config &config);
+
void sbasketb_map(address_map &map);
void sbasketb_sound_map(address_map &map);
};