From bfb99e2a8eb83064d885e8771c2b8a5244ded165 Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Thu, 21 Jan 2021 15:07:56 +0100 Subject: gauntlet2p: Fix slapstic communication --- src/mame/drivers/gauntlet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/gauntlet.cpp b/src/mame/drivers/gauntlet.cpp index cf8398639c6..23d0535223b 100644 --- a/src/mame/drivers/gauntlet.cpp +++ b/src/mame/drivers/gauntlet.cpp @@ -1665,7 +1665,7 @@ void gauntlet_state::common_init(int vindctr2) // Out-of-range access on alternate 1 - m_maincpu->space(AS_PROGRAM).install_readwrite_tap(0x4fed0, 0x4fed3, 0x000000, "slapstic", + m_maincpu->space(AS_PROGRAM).install_readwrite_tap(0x4fed0, 0x4fed7, 0x000000, "slapstic", [this](offs_t offset, u16 &data, u16 mem_mask) { m_slapstic->tweak(offset >> 1); }, [this](offs_t offset, u16 &data, u16 mem_mask) { m_slapstic->tweak(offset >> 1); }); m_maincpu->space(AS_PROGRAM).install_readwrite_tap(0x56e54, 0x56e57, 0x000000, "slapstic", -- cgit v1.2.3