Skip to content

Commit

Permalink
bugfix: Do not generate Fat Gary delay/exception if Z2/Z3 board unmap…
Browse files Browse the repository at this point in the history
…ped space access.
  • Loading branch information
midwan committed Dec 27, 2023
1 parent cb9465b commit 33e9061
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,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;
}

Expand Down

0 comments on commit 33e9061

Please sign in to comment.