mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 03:16:23 +02:00
13 lines
337 B
C#
13 lines
337 B
C#
namespace Ryujinx.Cpu.LightningJit
|
|
{
|
|
public static class CpuPresets
|
|
{
|
|
public static CpuPreset CortexA57 => new(
|
|
IsaVersion.v80,
|
|
IsaFeature.FeatAes |
|
|
IsaFeature.FeatCrc32 |
|
|
IsaFeature.FeatSha1 |
|
|
IsaFeature.FeatSha256 |
|
|
IsaFeature.FeatPmull);
|
|
}
|
|
}
|