summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/holeland.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/holeland.cpp')
-rw-r--r--src/mame/drivers/holeland.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/holeland.cpp b/src/mame/drivers/holeland.cpp
index f15efd7987e..87bb3d32e64 100644
--- a/src/mame/drivers/holeland.cpp
+++ b/src/mame/drivers/holeland.cpp
@@ -36,8 +36,8 @@ void holeland_state::holeland_map(address_map &map)
map(0xa000, 0xbfff).rom();
map(0xa000, 0xa000).w("speech", FUNC(sp0256_device::ald_w));
map(0xc000, 0xc007).w(m_latch, FUNC(ls259_device::write_d0)).nopr();
- map(0xe000, 0xe3ff).ram().w(this, FUNC(holeland_state::colorram_w)).share("colorram");
- map(0xe400, 0xe7ff).ram().w(this, FUNC(holeland_state::videoram_w)).share("videoram");
+ map(0xe000, 0xe3ff).ram().w(FUNC(holeland_state::colorram_w)).share("colorram");
+ map(0xe400, 0xe7ff).ram().w(FUNC(holeland_state::videoram_w)).share("videoram");
map(0xf000, 0xf3ff).ram().share("spriteram");
}
@@ -45,10 +45,10 @@ void holeland_state::crzrally_map(address_map &map)
{
map(0x0000, 0xbfff).rom();
map(0xc000, 0xc7ff).ram().share("nvram");
- map(0xe000, 0xe3ff).ram().w(this, FUNC(holeland_state::colorram_w)).share("colorram");
- map(0xe400, 0xe7ff).ram().w(this, FUNC(holeland_state::videoram_w)).share("videoram");
+ map(0xe000, 0xe3ff).ram().w(FUNC(holeland_state::colorram_w)).share("colorram");
+ map(0xe400, 0xe7ff).ram().w(FUNC(holeland_state::videoram_w)).share("videoram");
map(0xe800, 0xebff).ram().share("spriteram");
- map(0xf000, 0xf000).w(this, FUNC(holeland_state::scroll_w));
+ map(0xf000, 0xf000).w(FUNC(holeland_state::scroll_w));
map(0xf800, 0xf807).w(m_latch, FUNC(ls259_device::write_d0));
}