From 67cdd6aec7acb47375395fe8a8e2812a2f193650 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Tue, 4 Jul 2017 12:21:51 +0300 Subject: [PATCH] Add memory barrier after chip ram if not in compatible mode. --- od-win32/mman.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/od-win32/mman.cpp b/od-win32/mman.cpp index a5348189..2dc73237 100644 --- a/od-win32/mman.cpp +++ b/od-win32/mman.cpp @@ -738,6 +738,8 @@ bool uae_mman_info(addrbank *ab, struct uae_mman_data *md) barrier = true; if (currprefs.chipmem_size > 2 * 1024 * 1024) barrier = true; + if (currprefs.chipmem_size < 2 * 1024 * 1024 && !currprefs.cpu_compatible) + barrier = true; } else if (!_tcscmp(ab->label, _T("kick"))) { start = 0xf80000; got = true; -- 2.47.3