summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/aci_ggm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/aci_ggm.cpp')
-rw-r--r--src/mame/drivers/aci_ggm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/aci_ggm.cpp b/src/mame/drivers/aci_ggm.cpp
index 0bb68a6d5c2..d8e70940952 100644
--- a/src/mame/drivers/aci_ggm.cpp
+++ b/src/mame/drivers/aci_ggm.cpp
@@ -252,7 +252,7 @@ void ggm_state::main_map(address_map &map)
// external slot has potential bus conflict with RAM/VIA
map(0x0000, 0x7fff).mirror(0x8000).r(FUNC(ggm_state::cartridge_r));
map(0x0000, 0x07ff).ram().share("nvram");
- map(0x8000, 0x800f).rw(m_via, FUNC(via6522_device::read), FUNC(via6522_device::write));
+ map(0x8000, 0x800f).m(m_via, FUNC(via6522_device::map));
}