summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/m14.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/m14.cpp')
-rw-r--r--src/mame/drivers/m14.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/m14.cpp b/src/mame/drivers/m14.cpp
index 28f17866fd6..b793822ed77 100644
--- a/src/mame/drivers/m14.cpp
+++ b/src/mame/drivers/m14.cpp
@@ -304,18 +304,18 @@ void m14_state::m14_map(address_map &map)
{
map(0x0000, 0x1fff).rom();
map(0x2000, 0x23ff).ram();
- map(0xe000, 0xe3ff).ram().w(this, FUNC(m14_state::m14_vram_w)).share("video_ram");
- map(0xe400, 0xe7ff).ram().w(this, FUNC(m14_state::m14_cram_w)).share("color_ram");
+ map(0xe000, 0xe3ff).ram().w(FUNC(m14_state::m14_vram_w)).share("video_ram");
+ map(0xe400, 0xe7ff).ram().w(FUNC(m14_state::m14_cram_w)).share("color_ram");
}
void m14_state::m14_io_map(address_map &map)
{
map.global_mask(0xff);
- map(0xf8, 0xf8).portr("AN_PADDLE").w(this, FUNC(m14_state::ball_x_w));
- map(0xf9, 0xf9).portr("IN0").w(this, FUNC(m14_state::ball_y_w));
- map(0xfa, 0xfa).r(this, FUNC(m14_state::m14_rng_r)).w(this, FUNC(m14_state::paddle_x_w));
- map(0xfb, 0xfb).portr("DSW").w(this, FUNC(m14_state::output_w));
- map(0xfc, 0xfc).w(this, FUNC(m14_state::sound_w));
+ map(0xf8, 0xf8).portr("AN_PADDLE").w(FUNC(m14_state::ball_x_w));
+ map(0xf9, 0xf9).portr("IN0").w(FUNC(m14_state::ball_y_w));
+ map(0xfa, 0xfa).r(FUNC(m14_state::m14_rng_r)).w(FUNC(m14_state::paddle_x_w));
+ map(0xfb, 0xfb).portr("DSW").w(FUNC(m14_state::output_w));
+ map(0xfc, 0xfc).w(FUNC(m14_state::sound_w));
}
/*************************************