From 93eaa6a4943ade6513257a740fcde97ca9468559 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Fri, 8 Jun 2018 01:29:39 +1000 Subject: as if millions of this pointers suddenly cried out in terror, and were suddenly silenced * streamline templates in addrmap.h * get rid of overloads on read/write member names - this will become even more important in the near future --- src/devices/bus/adamnet/ddp.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/devices/bus/adamnet/ddp.cpp') diff --git a/src/devices/bus/adamnet/ddp.cpp b/src/devices/bus/adamnet/ddp.cpp index 60e32136c62..139f994184f 100644 --- a/src/devices/bus/adamnet/ddp.cpp +++ b/src/devices/bus/adamnet/ddp.cpp @@ -65,10 +65,10 @@ void adam_digital_data_pack_device::adam_ddp_mem(address_map &map) void adam_digital_data_pack_device::adam_ddp_io(address_map &map) { - map(M6801_PORT1, M6801_PORT1).w(this, FUNC(adam_digital_data_pack_device::p1_w)); - map(M6801_PORT2, M6801_PORT2).rw(this, FUNC(adam_digital_data_pack_device::p2_r), FUNC(adam_digital_data_pack_device::p2_w)); + map(M6801_PORT1, M6801_PORT1).w(FUNC(adam_digital_data_pack_device::p1_w)); + map(M6801_PORT2, M6801_PORT2).rw(FUNC(adam_digital_data_pack_device::p2_r), FUNC(adam_digital_data_pack_device::p2_w)); map(M6801_PORT3, M6801_PORT3).noprw(); // Multiplexed Address/Data - map(M6801_PORT4, M6801_PORT4).r(this, FUNC(adam_digital_data_pack_device::p4_r)).nopw(); + map(M6801_PORT4, M6801_PORT4).r(FUNC(adam_digital_data_pack_device::p4_r)).nopw(); } static const struct CassetteOptions adam_cassette_options = -- cgit v1.2.3-70-g09d2