summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gotya.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gotya.cpp')
-rw-r--r--src/mame/drivers/gotya.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/gotya.cpp b/src/mame/drivers/gotya.cpp
index d5d9c10503a..e2780b5863b 100644
--- a/src/mame/drivers/gotya.cpp
+++ b/src/mame/drivers/gotya.cpp
@@ -75,12 +75,12 @@ void gotya_state::gotya_map(address_map &map)
map(0x6000, 0x6000).portr("P1");
map(0x6001, 0x6001).portr("P2");
map(0x6002, 0x6002).portr("DSW");
- map(0x6004, 0x6004).w(this, FUNC(gotya_state::gotya_video_control_w));
- map(0x6005, 0x6005).w(this, FUNC(gotya_state::gotya_soundlatch_w));
+ map(0x6004, 0x6004).w(FUNC(gotya_state::gotya_video_control_w));
+ map(0x6005, 0x6005).w(FUNC(gotya_state::gotya_soundlatch_w));
map(0x6006, 0x6006).writeonly().share("scroll");
map(0x6007, 0x6007).w("watchdog", FUNC(watchdog_timer_device::reset_w));
- map(0xc000, 0xc7ff).ram().w(this, FUNC(gotya_state::gotya_videoram_w)).share("videoram");
- map(0xc800, 0xcfff).ram().w(this, FUNC(gotya_state::gotya_colorram_w)).share("colorram");
+ map(0xc000, 0xc7ff).ram().w(FUNC(gotya_state::gotya_videoram_w)).share("videoram");
+ map(0xc800, 0xcfff).ram().w(FUNC(gotya_state::gotya_colorram_w)).share("colorram");
map(0xd000, 0xd3df).ram().share("videoram2");
map(0xd3e0, 0xd3ff).ram().share("spriteram");
}