From 9b67f9deaab756fc719494f0d26d4a51220122db Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Tue, 26 Dec 2023 19:13:48 +0200 Subject: [PATCH] Do not generate Fat Gary delay/exception if Z2/Z3 board unampped space access. --- memory.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/memory.cpp b/memory.cpp index d8415d68..951f4ad6 100644 --- a/memory.cpp +++ b/memory.cpp @@ -298,6 +298,9 @@ static bool gary_nonrange(uaecptr addr) return false; if (addr >= 0xe80000 && addr < 0xf80000) return false; + if (expansion_get_autoconfig_by_address(&currprefs, addr, 0)) { + return false; + } return true; } -- 2.47.3