From: Toni Wilen Date: Tue, 26 Dec 2023 17:13:48 +0000 (+0200) Subject: Do not generate Fat Gary delay/exception if Z2/Z3 board unampped space access. X-Git-Tag: 5200~122 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=9b67f9deaab756fc719494f0d26d4a51220122db;p=francis%2Fwinuae.git Do not generate Fat Gary delay/exception if Z2/Z3 board unampped space access. --- 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; }