summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/aim65_40.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/aim65_40.cpp')
-rw-r--r--src/mame/drivers/aim65_40.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/aim65_40.cpp b/src/mame/drivers/aim65_40.cpp
index e4f05c5d97c..92c3c103a88 100644
--- a/src/mame/drivers/aim65_40.cpp
+++ b/src/mame/drivers/aim65_40.cpp
@@ -106,9 +106,9 @@ void aim65_40_state::mem_map(address_map &map)
map(0x0000, 0x3fff).ram();
map(0xa000, 0xcfff).rom().region("roms", 0);
map(0xf000, 0xffff).rom().region("roms", 0x3000);
- map(0xffa0, 0xffaf).rw(M6522_0_TAG, FUNC(via6522_device::read), FUNC(via6522_device::write));
- map(0xffb0, 0xffbf).rw(M6522_1_TAG, FUNC(via6522_device::read), FUNC(via6522_device::write));
- map(0xffc0, 0xffcf).rw(M6522_2_TAG, FUNC(via6522_device::read), FUNC(via6522_device::write));
+ map(0xffa0, 0xffaf).m(M6522_0_TAG, FUNC(via6522_device::map));
+ map(0xffb0, 0xffbf).m(M6522_1_TAG, FUNC(via6522_device::map));
+ map(0xffc0, 0xffcf).m(M6522_2_TAG, FUNC(via6522_device::map));
map(0xffd0, 0xffd3).rw(M6551_TAG, FUNC(mos6551_device::read), FUNC(mos6551_device::write));
}