diff options
author | 2018-06-08 01:29:39 +1000 | |
---|---|---|
committer | 2018-06-08 01:29:39 +1000 | |
commit | 93eaa6a4943ade6513257a740fcde97ca9468559 (patch) | |
tree | 1340f2160a7064a839b7ca649b2257489cdd3d6d /src/devices/cpu/tms32082 | |
parent | fafafe7050e4d04230656215b840ac53aad081e7 (diff) |
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
Diffstat (limited to 'src/devices/cpu/tms32082')
-rw-r--r-- | src/devices/cpu/tms32082/tms32082.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/tms32082/tms32082.cpp b/src/devices/cpu/tms32082/tms32082.cpp index eec9c19c4b3..3ccebccd923 100644 --- a/src/devices/cpu/tms32082/tms32082.cpp +++ b/src/devices/cpu/tms32082/tms32082.cpp @@ -30,7 +30,7 @@ void tms32082_mp_device::mp_internal_map(address_map &map) map(0x00009000, 0x00009fff).ram().share("pp1_data1"); map(0x01000000, 0x01000fff).ram().share("pp0_param"); map(0x01001000, 0x01001fff).ram().share("pp1_param"); - map(0x01010000, 0x010107ff).rw(this, FUNC(tms32082_mp_device::mp_param_r), FUNC(tms32082_mp_device::mp_param_w)); + map(0x01010000, 0x010107ff).rw(FUNC(tms32082_mp_device::mp_param_r), FUNC(tms32082_mp_device::mp_param_w)); } const uint32_t tms32082_mp_device::SHIFT_MASK[] = |