]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
4500b8
authorToni Wilen <twilen@winuae.net>
Sun, 1 Nov 2020 19:07:50 +0000 (21:07 +0200)
committerToni Wilen <twilen@winuae.net>
Sun, 1 Nov 2020 19:07:50 +0000 (21:07 +0200)
od-win32/win32.h
od-win32/winuaechangelog.txt

index 3af44d54dbff0d06fbd6423465a01af49c06c543..a6c5d3700c045d8a46ddbb2ef6ee1da0d246889a 100644 (file)
 #define LANG_DLL_FULL_VERSION_MATCH 1
 
 #if WINUAEPUBLICBETA
-#define WINUAEBETA _T("Beta 7")
+#define WINUAEBETA _T("Beta 8")
 #else
 #define WINUAEBETA _T("")
 #endif
 
-#define WINUAEDATE MAKEBD(2020, 10, 31)
+#define WINUAEDATE MAKEBD(2020, 11, 1)
 
 //#define WINUAEEXTRA _T("AmiKit Preview")
 //#define WINUAEEXTRA _T("Amiga Forever Edition")
index 902917e02815aef885b6ed508f46f058806846f4..7d7f7f096cfb5b22c5d419ca9ab1bff24798ae5e 100644 (file)
@@ -1,5 +1,10 @@
 
 
+Beta 8:
+
+- Remaining JIT shift instruction bugs fixed. (I really didn't want to but I had to learn a bit more how JIT internally works..). My tester now passes all normal tests.
+- Some hardware emulated boards bypassed byte/word swapping if accessed by PPC CPU.
+
 Beta 7:
 
 - Fixed incorrect bitplane DMA overrun condition that made Zool 2 AGA flicker strangely (b1) (AGA game with 7 planes but FMODE=0. What a waste of DMA slots.)
@@ -16,7 +21,6 @@ Beta 7:
 - JIT MOVEM/MOVE16 direct RAM access optimization (calculate address only once, then do moves vs do separate multiple calculate address+move combinations) is now automatically disabled if hardware emulated RTG board is enabled, most have byte/word swapping logic which would cause cause graphics corruption if same MOVEM/MOVE16 copy was first used for RAM reads or writes and then later (when it was still in translated format) it was used for VRAM reads or writes. At least CGX4 does this.
 - JIT LSL/LSR fixed (temporary fix, better fix later that should also fix other shift instructions). jit_blacklist config entry should be removed now.
 
-
 Beta 6:
 
 - Fixed CV64/3D 3D vertical clipping. Fixes at least warptest corruption when test texture goes out of screen vertically.