summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/dynadice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/dynadice.cpp')
-rw-r--r--src/mame/drivers/dynadice.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/dynadice.cpp b/src/mame/drivers/dynadice.cpp
index 17b7d1bfcbd..6926bdc65b2 100644
--- a/src/mame/drivers/dynadice.cpp
+++ b/src/mame/drivers/dynadice.cpp
@@ -127,7 +127,7 @@ WRITE8_MEMBER(dynadice_state::sound_control_w)
void dynadice_state::dynadice_map(address_map &map)
{
map(0x0000, 0x1fff).rom();
- map(0x2000, 0x23ff).ram().w(this, FUNC(dynadice_state::videoram_w)).share("videoram");
+ map(0x2000, 0x23ff).ram().w(FUNC(dynadice_state::videoram_w)).share("videoram");
map(0x4000, 0x40ff).ram().share("nvram");
}
@@ -152,8 +152,8 @@ void dynadice_state::dynadice_sound_io_map(address_map &map)
map.global_mask(0xff);
map(0x00, 0x00).r("soundlatch", FUNC(generic_latch_8_device::read));
map(0x01, 0x01).w("soundlatch", FUNC(generic_latch_8_device::write));
- map(0x02, 0x02).w(this, FUNC(dynadice_state::sound_data_w));
- map(0x03, 0x03).w(this, FUNC(dynadice_state::sound_control_w));
+ map(0x02, 0x02).w(FUNC(dynadice_state::sound_data_w));
+ map(0x03, 0x03).w(FUNC(dynadice_state::sound_control_w));
}
static INPUT_PORTS_START( dynadice )