summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/starshp1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/starshp1.cpp')
-rw-r--r--src/mame/drivers/starshp1.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/starshp1.cpp b/src/mame/drivers/starshp1.cpp
index 8bb81955048..36ee9d022dc 100644
--- a/src/mame/drivers/starshp1.cpp
+++ b/src/mame/drivers/starshp1.cpp
@@ -161,19 +161,19 @@ void starshp1_state::starshp1_map(address_map &map)
map(0x2c00, 0x3fff).rom();
map(0xa000, 0xa000).portr("SYSTEM");
map(0xb000, 0xb000).portr("VBLANK");
- map(0xc300, 0xc3ff).w(this, FUNC(starshp1_state::starshp1_sspic_w)); /* spaceship picture */
+ map(0xc300, 0xc3ff).w(FUNC(starshp1_state::starshp1_sspic_w)); /* spaceship picture */
map(0xc400, 0xc400).portr("COINAGE");
- map(0xc400, 0xc4ff).w(this, FUNC(starshp1_state::starshp1_ssadd_w)); /* spaceship address */
- map(0xc800, 0xc9ff).ram().w(this, FUNC(starshp1_state::starshp1_playfield_w)).share("playfield_ram");
+ map(0xc400, 0xc4ff).w(FUNC(starshp1_state::starshp1_ssadd_w)); /* spaceship address */
+ map(0xc800, 0xc9ff).ram().w(FUNC(starshp1_state::starshp1_playfield_w)).share("playfield_ram");
map(0xcc00, 0xcc0f).writeonly().share("hpos_ram");
map(0xd000, 0xd00f).writeonly().share("vpos_ram");
map(0xd400, 0xd40f).writeonly().share("obj_ram");
- map(0xd800, 0xd800).r(this, FUNC(starshp1_state::starshp1_rng_r));
- map(0xd800, 0xd80f).w(this, FUNC(starshp1_state::starshp1_collision_reset_w));
+ map(0xd800, 0xd800).r(FUNC(starshp1_state::starshp1_rng_r));
+ map(0xd800, 0xd80f).w(FUNC(starshp1_state::starshp1_collision_reset_w));
map(0xdc00, 0xdc07).mirror(0x0008).w("misclatch", FUNC(f9334_device::write_d0));
- map(0xdd00, 0xdd0f).w(this, FUNC(starshp1_state::starshp1_analog_in_w));
+ map(0xdd00, 0xdd0f).w(FUNC(starshp1_state::starshp1_analog_in_w));
map(0xde00, 0xde07).mirror(0x0008).w("audiolatch", FUNC(f9334_device::write_d0));
- map(0xdf00, 0xdf0f).w(this, FUNC(starshp1_state::starshp1_analog_out_w));
+ map(0xdf00, 0xdf0f).w(FUNC(starshp1_state::starshp1_analog_out_w));
map(0xf000, 0xffff).rom();
}