diff options
author | 2019-07-07 17:14:51 +0200 | |
---|---|---|
committer | 2019-07-07 17:15:17 +0200 | |
commit | f9bcdcbbc91a553cd5fa72996eeac84daacb99db (patch) | |
tree | 4bca22c7bfc9c2a6927d1b2156f0af953e4c144b /src/mame/drivers/tv950.cpp | |
parent | 4bfe2c29315d664f1cf433cdee4a8a45d911c1da (diff) |
via6522: Change most mappings into m() [O. Galibert]
Diffstat (limited to 'src/mame/drivers/tv950.cpp')
-rw-r--r-- | src/mame/drivers/tv950.cpp | 2 |
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); } |