summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a2bus/transwarp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a2bus/transwarp.cpp')
-rw-r--r--src/devices/bus/a2bus/transwarp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/a2bus/transwarp.cpp b/src/devices/bus/a2bus/transwarp.cpp
index bfbe3697cc6..be81911b9bc 100644
--- a/src/devices/bus/a2bus/transwarp.cpp
+++ b/src/devices/bus/a2bus/transwarp.cpp
@@ -33,7 +33,7 @@ DEFINE_DEVICE_TYPE(A2BUS_TRANSWARP, a2bus_transwarp_device, "a2twarp", "Applied
void a2bus_transwarp_device::m65c02_mem(address_map &map)
{
- map(0x0000, 0xffff).rw(this, FUNC(a2bus_transwarp_device::dma_r), FUNC(a2bus_transwarp_device::dma_w));
+ map(0x0000, 0xffff).rw(FUNC(a2bus_transwarp_device::dma_r), FUNC(a2bus_transwarp_device::dma_w));
}
ROM_START( warprom )