summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/suna16.h
diff options
context:
space:
mode:
author David Haywood <hazemamewip@hotmail.com>2018-07-01 20:19:58 +0100
committer ajrhacker <ajrhacker@users.noreply.github.com>2018-07-01 15:19:58 -0400
commite3aae75004d3d6551e9282b1330d53ba1f5d05e2 (patch)
tree17fa92253713e6f94e86e07cd52806395fe4ce1e /src/mame/includes/suna16.h
parent6e15d298234a0d8140061b7a4be8c617f12c9690 (diff)
private: use (S, T, U, V) (nw) (#3720)
* private: use (S) (nw) * T part 1 (nw) * T part 2 (nw) * U,V (nw)
Diffstat (limited to 'src/mame/includes/suna16.h')
-rw-r--r--src/mame/includes/suna16.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/mame/includes/suna16.h b/src/mame/includes/suna16.h
index 4271a960e5f..362f4a4611c 100644
--- a/src/mame/includes/suna16.h
+++ b/src/mame/includes/suna16.h
@@ -25,6 +25,14 @@ public:
, m_leds(*this, "led%u", 0U)
{ }
+ void uballoon(machine_config &config);
+ void sunaq(machine_config &config);
+ void bssoccer(machine_config &config);
+ void bestbest(machine_config &config);
+
+ void init_uballoon();
+
+private:
// common
DECLARE_WRITE16_MEMBER(soundlatch_w);
DECLARE_READ16_MEMBER(paletteram_r);
@@ -51,7 +59,6 @@ public:
TIMER_DEVICE_CALLBACK_MEMBER(bssoccer_interrupt);
- void init_uballoon();
virtual void video_start() override;
DECLARE_MACHINE_START(bestbest);
DECLARE_MACHINE_START(bssoccer);
@@ -61,10 +68,7 @@ public:
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_bestbest(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, uint16_t *sprites, int gfx);
- void uballoon(machine_config &config);
- void sunaq(machine_config &config);
- void bssoccer(machine_config &config);
- void bestbest(machine_config &config);
+
void bestbest_map(address_map &map);
void bestbest_pcm_1_iomap(address_map &map);
void bestbest_pcm_1_map(address_map &map);
@@ -82,7 +86,6 @@ public:
void uballoon_pcm_1_map(address_map &map);
void uballoon_sound_map(address_map &map);
-protected:
required_device<cpu_device> m_maincpu;
optional_device<cpu_device> m_pcm1;
optional_device<cpu_device> m_pcm2;