summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gts3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gts3.cpp')
-rw-r--r--src/mame/drivers/gts3.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/gts3.cpp b/src/mame/drivers/gts3.cpp
index 839b3cec390..313274242fc 100644
--- a/src/mame/drivers/gts3.cpp
+++ b/src/mame/drivers/gts3.cpp
@@ -81,8 +81,8 @@ private:
void gts3_state::gts3_map(address_map &map)
{
map(0x0000, 0x1fff).ram().share("nvram");
- map(0x2000, 0x200f).rw(m_u4, FUNC(via6522_device::read), FUNC(via6522_device::write));
- map(0x2010, 0x201f).rw(m_u5, FUNC(via6522_device::read), FUNC(via6522_device::write));
+ map(0x2000, 0x200f).m(m_u4, FUNC(via6522_device::map));
+ map(0x2010, 0x201f).m(m_u5, FUNC(via6522_device::map));
map(0x2020, 0x2023).mirror(0x0c).w(FUNC(gts3_state::segbank_w));
map(0x4000, 0xffff).rom();
}