From 37383f4217e1c510a543e100d0ca495800b3361a Mon Sep 17 00:00:00 2001 From: Malcolm Jestadt Date: Mon, 1 Nov 2021 11:48:49 -0400 Subject: [PATCH] SPU ASMJIT: Disable 512 wide spu verification - Apparantly this crashes every game. --- rpcs3/Emu/Cell/SPUASMJITRecompiler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/Cell/SPUASMJITRecompiler.cpp b/rpcs3/Emu/Cell/SPUASMJITRecompiler.cpp index 3ff14609d5..ce99b5e616 100644 --- a/rpcs3/Emu/Cell/SPUASMJITRecompiler.cpp +++ b/rpcs3/Emu/Cell/SPUASMJITRecompiler.cpp @@ -281,9 +281,9 @@ spu_function_t spu_recompiler::compile(spu_program&& _func) c->vzeroupper(); } } - else if (utils::has_avx512() && g_cfg.core.full_width_avx512) + else if (utils::has_avx512() && false) { - // AVX-512 optimized check using 512-bit registers + // AVX-512 optimized check using 512-bit registers (disabled) words_align = 64; const u32 starta = start & -64;