Ryujinx/ChocolArm64/AOptimizations.cs

12 lines
305 B
C#
Raw Normal View History

2018-05-09 22:45:37 -04:00
using System.Runtime.Intrinsics.X86;
public static class AOptimizations
{
public static bool DisableMemoryChecks = false;
public static bool GenerateCallStack = true;
2018-05-09 22:45:37 -04:00
public static bool UseSse2IfAvailable = true;
internal static bool UseSse2 = UseSse2IfAvailable && Sse2.IsSupported;
}