summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/relief.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/relief.cpp')
-rw-r--r--src/mame/drivers/relief.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/relief.cpp b/src/mame/drivers/relief.cpp
index f2399c26dc0..01b1cd7e67a 100644
--- a/src/mame/drivers/relief.cpp
+++ b/src/mame/drivers/relief.cpp
@@ -127,13 +127,13 @@ void relief_state::main_map(address_map &map)
map(0x000000, 0x07ffff).rom();
map(0x140000, 0x140003).w(m_ym2413, FUNC(ym2413_device::write)).umask16(0x00ff);
map(0x140011, 0x140011).rw(m_oki, FUNC(okim6295_device::read), FUNC(okim6295_device::write));
- map(0x140020, 0x140021).w(this, FUNC(relief_state::audio_volume_w));
- map(0x140030, 0x140031).w(this, FUNC(relief_state::audio_control_w));
+ map(0x140020, 0x140021).w(FUNC(relief_state::audio_volume_w));
+ map(0x140030, 0x140031).w(FUNC(relief_state::audio_control_w));
map(0x180000, 0x180fff).rw("eeprom", FUNC(eeprom_parallel_28xx_device::read), FUNC(eeprom_parallel_28xx_device::write)).umask16(0xff00);
map(0x1c0030, 0x1c0031).w("eeprom", FUNC(eeprom_parallel_28xx_device::unlock_write16));
map(0x260000, 0x260001).portr("260000");
map(0x260002, 0x260003).portr("260002");
- map(0x260010, 0x260011).r(this, FUNC(relief_state::special_port2_r));
+ map(0x260010, 0x260011).r(FUNC(relief_state::special_port2_r));
map(0x260012, 0x260013).portr("260012");
map(0x2a0000, 0x2a0001).w("watchdog", FUNC(watchdog_timer_device::reset16_w));
map(0x3e0000, 0x3e0fff).ram().w(m_palette, FUNC(palette_device::write16)).share("palette");