summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mwarr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mwarr.cpp')
-rw-r--r--src/mame/drivers/mwarr.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/mwarr.cpp b/src/mame/drivers/mwarr.cpp
index 0f377e90c82..5acd59d4e4f 100644
--- a/src/mame/drivers/mwarr.cpp
+++ b/src/mame/drivers/mwarr.cpp
@@ -215,10 +215,10 @@ WRITE16_MEMBER(mwarr_state::mwarr_brightness_w)
void mwarr_state::mwarr_map(address_map &map)
{
map(0x000000, 0x0fffff).rom();
- map(0x100000, 0x1007ff).ram().w(this, FUNC(mwarr_state::bg_videoram_w)).share("bg_videoram");
- map(0x100800, 0x100fff).ram().w(this, FUNC(mwarr_state::mlow_videoram_w)).share("mlow_videoram");
- map(0x101000, 0x1017ff).ram().w(this, FUNC(mwarr_state::mhigh_videoram_w)).share("mhigh_videoram");
- map(0x101800, 0x1027ff).ram().w(this, FUNC(mwarr_state::tx_videoram_w)).share("tx_videoram");
+ map(0x100000, 0x1007ff).ram().w(FUNC(mwarr_state::bg_videoram_w)).share("bg_videoram");
+ map(0x100800, 0x100fff).ram().w(FUNC(mwarr_state::mlow_videoram_w)).share("mlow_videoram");
+ map(0x101000, 0x1017ff).ram().w(FUNC(mwarr_state::mhigh_videoram_w)).share("mhigh_videoram");
+ map(0x101800, 0x1027ff).ram().w(FUNC(mwarr_state::tx_videoram_w)).share("tx_videoram");
map(0x103000, 0x1033ff).ram().share("bg_scrollram");
map(0x103400, 0x1037ff).ram().share("mlow_scrollram");
map(0x103800, 0x103bff).ram().share("mhigh_scrollram");
@@ -229,9 +229,9 @@ void mwarr_state::mwarr_map(address_map &map)
map(0x110000, 0x110001).portr("P1_P2");
map(0x110002, 0x110003).portr("SYSTEM");
map(0x110004, 0x110005).portr("DSW");
- map(0x110010, 0x110011).w(this, FUNC(mwarr_state::oki1_bank_w));
- map(0x110014, 0x110015).w(this, FUNC(mwarr_state::mwarr_brightness_w));
- map(0x110016, 0x110017).w(this, FUNC(mwarr_state::sprites_commands_w));
+ map(0x110010, 0x110011).w(FUNC(mwarr_state::oki1_bank_w));
+ map(0x110014, 0x110015).w(FUNC(mwarr_state::mwarr_brightness_w));
+ map(0x110016, 0x110017).w(FUNC(mwarr_state::sprites_commands_w));
map(0x180001, 0x180001).rw("oki1", FUNC(okim6295_device::read), FUNC(okim6295_device::write));
map(0x190001, 0x190001).rw("oki2", FUNC(okim6295_device::read), FUNC(okim6295_device::write));
}