summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tv950.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tv950.cpp')
-rw-r--r--src/mame/drivers/tv950.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/tv950.cpp b/src/mame/drivers/tv950.cpp
index 92240e44e96..75c5721fbed 100644
--- a/src/mame/drivers/tv950.cpp
+++ b/src/mame/drivers/tv950.cpp
@@ -117,7 +117,7 @@ void tv950_state::tv950_mem(address_map &map)
map(0x9300, 0x9303).rw(m_uart[0], FUNC(mos6551_device::read), FUNC(mos6551_device::write)); // CS0 = AB9
map(0x9500, 0x9503).rw(m_uart[2], FUNC(mos6551_device::read), FUNC(mos6551_device::write)); // CS0 = AB10
map(0x9900, 0x9903).rw(m_uart[1], FUNC(mos6551_device::read), FUNC(mos6551_device::write)); // CS0 = AB11
- map(0xb100, 0xb10f).rw(m_via, FUNC(via6522_device::read), FUNC(via6522_device::write));
+ map(0xb100, 0xb10f).m(m_via, FUNC(via6522_device::map));
map(0xe000, 0xffff).rom().region("maincpu", 0);
}