summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/commando.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/commando.cpp')
-rw-r--r--src/mame/drivers/commando.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/commando.cpp b/src/mame/drivers/commando.cpp
index 53b8d36df4e..e628310992d 100644
--- a/src/mame/drivers/commando.cpp
+++ b/src/mame/drivers/commando.cpp
@@ -65,13 +65,13 @@ void commando_state::commando_map(address_map &map)
map(0xc003, 0xc003).portr("DSW1");
map(0xc004, 0xc004).portr("DSW2");
map(0xc800, 0xc800).w("soundlatch", FUNC(generic_latch_8_device::write));
- map(0xc804, 0xc804).w(this, FUNC(commando_state::commando_c804_w));
- map(0xc808, 0xc809).w(this, FUNC(commando_state::commando_scrollx_w));
- map(0xc80a, 0xc80b).w(this, FUNC(commando_state::commando_scrolly_w));
- map(0xd000, 0xd3ff).ram().w(this, FUNC(commando_state::commando_videoram2_w)).share("videoram2");
- map(0xd400, 0xd7ff).ram().w(this, FUNC(commando_state::commando_colorram2_w)).share("colorram2");
- map(0xd800, 0xdbff).ram().w(this, FUNC(commando_state::commando_videoram_w)).share("videoram");
- map(0xdc00, 0xdfff).ram().w(this, FUNC(commando_state::commando_colorram_w)).share("colorram");
+ map(0xc804, 0xc804).w(FUNC(commando_state::commando_c804_w));
+ map(0xc808, 0xc809).w(FUNC(commando_state::commando_scrollx_w));
+ map(0xc80a, 0xc80b).w(FUNC(commando_state::commando_scrolly_w));
+ map(0xd000, 0xd3ff).ram().w(FUNC(commando_state::commando_videoram2_w)).share("videoram2");
+ map(0xd400, 0xd7ff).ram().w(FUNC(commando_state::commando_colorram2_w)).share("colorram2");
+ map(0xd800, 0xdbff).ram().w(FUNC(commando_state::commando_videoram_w)).share("videoram");
+ map(0xdc00, 0xdfff).ram().w(FUNC(commando_state::commando_colorram_w)).share("colorram");
map(0xe000, 0xfdff).ram();
map(0xfe00, 0xff7f).ram().share("spriteram");
map(0xff80, 0xffff).ram();