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
14
src/Ryujinx.Cpu/LightningJit/CpuPreset.cs
Normal file
14
src/Ryujinx.Cpu/LightningJit/CpuPreset.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
namespace Ryujinx.Cpu.LightningJit
|
||||
{
|
||||
public readonly struct CpuPreset
|
||||
{
|
||||
public readonly IsaVersion Version;
|
||||
public readonly IsaFeature Features;
|
||||
|
||||
public CpuPreset(IsaVersion version, IsaFeature features)
|
||||
{
|
||||
Version = version;
|
||||
Features = features;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue