From dc83375dcaaecddc3302cc9eddb0e39b17cb3f04 Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Wed, 25 Mar 2020 18:26:17 +0100 Subject: devices/machine: simplified more handlers (nw) --- src/mame/drivers/apple2e.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mame/drivers/apple2e.cpp') diff --git a/src/mame/drivers/apple2e.cpp b/src/mame/drivers/apple2e.cpp index 013c23a16be..c003c713e70 100644 --- a/src/mame/drivers/apple2e.cpp +++ b/src/mame/drivers/apple2e.cpp @@ -2917,7 +2917,7 @@ void apple2e_state::laser128_map(address_map &map) // map(0xc098, 0xc09b).rw(m_acia1, FUNC(mos6551_device::read), FUNC(mos6551_device::write)); // map(0xc0a8, 0xc0ab).rw(m_acia2, FUNC(mos6551_device::read), FUNC(mos6551_device::write)); map(0xc0d0, 0xc0d3).rw(FUNC(apple2e_state::memexp_r), FUNC(apple2e_state::memexp_w)); - map(0xc0e0, 0xc0ef).rw(m_laserudc, FUNC(applefdc_base_device::bus_r), FUNC(applefdc_base_device::bus_w)); + map(0xc0e0, 0xc0ef).rw(m_laserudc, FUNC(applefdc_base_device::read), FUNC(applefdc_base_device::write)); map(0xc100, 0xc2ff).m(m_c100bank, FUNC(address_map_bank_device::amap8)); map(0xc300, 0xc3ff).m(m_c300bank, FUNC(address_map_bank_device::amap8)); map(0xc400, 0xc7ff).m(m_c400bank, FUNC(address_map_bank_device::amap8)); -- cgit v1.2.3