mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-23 06:57:13 +02:00
Implement a new JIT for Arm devices
This commit is contained in:
parent
9864675a0b
commit
597710a522
127 changed files with 42538 additions and 25 deletions
13
src/Ryujinx.Cpu/LightningJit/CpuPresets.cs
Normal file
13
src/Ryujinx.Cpu/LightningJit/CpuPresets.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue