summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/flyball.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-06-08 01:29:39 +1000
committer Vas Crabb <vas@vastheman.com>2018-06-08 01:29:39 +1000
commit93eaa6a4943ade6513257a740fcde97ca9468559 (patch)
tree1340f2160a7064a839b7ca649b2257489cdd3d6d /src/mame/drivers/flyball.cpp
parentfafafe7050e4d04230656215b840ac53aad081e7 (diff)
as if millions of this pointers suddenly cried out in terror, and were suddenly silenced
* streamline templates in addrmap.h * get rid of overloads on read/write member names - this will become even more important in the near future
Diffstat (limited to 'src/mame/drivers/flyball.cpp')
-rw-r--r--src/mame/drivers/flyball.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mame/drivers/flyball.cpp b/src/mame/drivers/flyball.cpp
index 4f6905e7a79..1e2c97ce1a1 100644
--- a/src/mame/drivers/flyball.cpp
+++ b/src/mame/drivers/flyball.cpp
@@ -306,16 +306,16 @@ void flyball_state::flyball_map(address_map &map)
map.global_mask(0x1fff);
map(0x0000, 0x00ff).mirror(0x100).ram();
map(0x0800, 0x0800).noprw();
- map(0x0801, 0x0801).w(this, FUNC(flyball_state::pitcher_pic_w));
- map(0x0802, 0x0802).r(this, FUNC(flyball_state::scanline_r));
- map(0x0803, 0x0803).r(this, FUNC(flyball_state::potsense_r));
- map(0x0804, 0x0804).w(this, FUNC(flyball_state::ball_vert_w));
- map(0x0805, 0x0805).w(this, FUNC(flyball_state::ball_horz_w));
- map(0x0806, 0x0806).w(this, FUNC(flyball_state::pitcher_vert_w));
- map(0x0807, 0x0807).w(this, FUNC(flyball_state::pitcher_horz_w));
- map(0x0900, 0x0900).w(this, FUNC(flyball_state::potmask_w));
- map(0x0a00, 0x0a07).w(this, FUNC(flyball_state::misc_w));
- map(0x0b00, 0x0b00).r(this, FUNC(flyball_state::input_r));
+ map(0x0801, 0x0801).w(FUNC(flyball_state::pitcher_pic_w));
+ map(0x0802, 0x0802).r(FUNC(flyball_state::scanline_r));
+ map(0x0803, 0x0803).r(FUNC(flyball_state::potsense_r));
+ map(0x0804, 0x0804).w(FUNC(flyball_state::ball_vert_w));
+ map(0x0805, 0x0805).w(FUNC(flyball_state::ball_horz_w));
+ map(0x0806, 0x0806).w(FUNC(flyball_state::pitcher_vert_w));
+ map(0x0807, 0x0807).w(FUNC(flyball_state::pitcher_horz_w));
+ map(0x0900, 0x0900).w(FUNC(flyball_state::potmask_w));
+ map(0x0a00, 0x0a07).w(FUNC(flyball_state::misc_w));
+ map(0x0b00, 0x0b00).r(FUNC(flyball_state::input_r));
map(0x0d00, 0x0eff).writeonly().share("playfield_ram");
map(0x1000, 0x1fff).rom().region("maincpu", 0);
}