summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ambush.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ambush.cpp')
-rw-r--r--src/mame/drivers/ambush.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/ambush.cpp b/src/mame/drivers/ambush.cpp
index 051fd5bf2d6..f979de87ecd 100644
--- a/src/mame/drivers/ambush.cpp
+++ b/src/mame/drivers/ambush.cpp
@@ -126,13 +126,13 @@ void ambush_state::main_map(address_map &map)
map(0x8000, 0x87ff).ram();
map(0xa000, 0xa000).r("watchdog", FUNC(watchdog_timer_device::reset_r));
map(0xc000, 0xc07f).ram();
- map(0xc080, 0xc09f).ram().w(this, FUNC(ambush_state::scroll_ram_w)).share("scroll_ram"); // 1 byte for each column
+ map(0xc080, 0xc09f).ram().w(FUNC(ambush_state::scroll_ram_w)).share("scroll_ram"); // 1 byte for each column
map(0xc0a0, 0xc0ff).ram();
map(0xc100, 0xc1ff).ram().share("attribute_ram"); // 1 line corresponds to 4 in the video ram
map(0xc200, 0xc3ff).ram().share("sprite_ram");
map(0xc400, 0xc7ff).ram().share("video_ram");
map(0xc800, 0xc800).portr("sw1");
- map(0xcc00, 0xcc07).w(this, FUNC(ambush_state::output_latches_w));
+ map(0xcc00, 0xcc07).w(FUNC(ambush_state::output_latches_w));
}
void ambush_state::main_portmap(address_map &map)