summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/snes/sa1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/snes/sa1.cpp')
-rw-r--r--src/devices/bus/snes/sa1.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/snes/sa1.cpp b/src/devices/bus/snes/sa1.cpp
index 852fe6a23f8..bd98bd840ae 100644
--- a/src/devices/bus/snes/sa1.cpp
+++ b/src/devices/bus/snes/sa1.cpp
@@ -1137,9 +1137,9 @@ WRITE8_MEMBER( sns_sa1_device::sa1_lo_w )
void sns_sa1_device::sa1_map(address_map &map)
{
- map(0x000000, 0x7dffff).rw(this, FUNC(sns_sa1_device::sa1_lo_r), FUNC(sns_sa1_device::sa1_lo_w));
+ map(0x000000, 0x7dffff).rw(FUNC(sns_sa1_device::sa1_lo_r), FUNC(sns_sa1_device::sa1_lo_w));
map(0x7e0000, 0x7fffff).noprw();
- map(0x800000, 0xffffff).rw(this, FUNC(sns_sa1_device::sa1_hi_r), FUNC(sns_sa1_device::sa1_hi_w));
+ map(0x800000, 0xffffff).rw(FUNC(sns_sa1_device::sa1_hi_r), FUNC(sns_sa1_device::sa1_hi_w));
}