summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/cage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/cage.cpp')
-rw-r--r--src/mame/audio/cage.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/audio/cage.cpp b/src/mame/audio/cage.cpp
index 0c35c32a044..e0199cb0b9d 100644
--- a/src/mame/audio/cage.cpp
+++ b/src/mame/audio/cage.cpp
@@ -600,9 +600,9 @@ void atari_cage_device::cage_map(address_map &map)
map(0x000000, 0x00ffff).ram().share("cageram");
map(0x200000, 0x200000).nopw();
map(0x400000, 0x47ffff).bankr("bank10");
- map(0x808000, 0x8080ff).rw(this, FUNC(atari_cage_device::tms32031_io_r), FUNC(atari_cage_device::tms32031_io_w));
+ map(0x808000, 0x8080ff).rw(FUNC(atari_cage_device::tms32031_io_r), FUNC(atari_cage_device::tms32031_io_w));
map(0x809800, 0x809fff).ram();
- map(0xa00000, 0xa00000).rw(this, FUNC(atari_cage_device::cage_from_main_r), FUNC(atari_cage_device::cage_to_main_w));
+ map(0xa00000, 0xa00000).rw(FUNC(atari_cage_device::cage_from_main_r), FUNC(atari_cage_device::cage_to_main_w));
map(0xc00000, 0xffffff).bankr("bank11");
}
@@ -612,11 +612,11 @@ void atari_cage_seattle_device::cage_map_seattle(address_map &map)
map(0x000000, 0x00ffff).ram().share("cageram");
map(0x200000, 0x200000).nopw();
map(0x400000, 0x47ffff).bankr("bank10");
- map(0x808000, 0x8080ff).rw(this, FUNC(atari_cage_seattle_device::tms32031_io_r), FUNC(atari_cage_seattle_device::tms32031_io_w));
+ map(0x808000, 0x8080ff).rw(FUNC(atari_cage_seattle_device::tms32031_io_r), FUNC(atari_cage_seattle_device::tms32031_io_w));
map(0x809800, 0x809fff).ram();
- map(0xa00000, 0xa00000).rw(this, FUNC(atari_cage_seattle_device::cage_from_main_r), FUNC(atari_cage_seattle_device::cage_from_main_ack_w));
- map(0xa00001, 0xa00001).w(this, FUNC(atari_cage_seattle_device::cage_to_main_w));
- map(0xa00003, 0xa00003).r(this, FUNC(atari_cage_seattle_device::cage_io_status_r));
+ map(0xa00000, 0xa00000).rw(FUNC(atari_cage_seattle_device::cage_from_main_r), FUNC(atari_cage_seattle_device::cage_from_main_ack_w));
+ map(0xa00001, 0xa00001).w(FUNC(atari_cage_seattle_device::cage_to_main_w));
+ map(0xa00003, 0xa00003).r(FUNC(atari_cage_seattle_device::cage_io_status_r));
map(0xc00000, 0xffffff).bankr("bank11");
}