diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-02-24 11:19:28 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-02-24 11:19:28 -0300 |
| commit | 035efc913e7f2a68315d4206cef46672005b8442 (patch) | |
| tree | eeb130850da914eb18e50ab5106db801b2eb4b14 /ChocolArm64/Instruction/AInstEmitSystem.cs | |
| parent | 3936c934482a587635bc5a1e47962551aeb53aeb (diff) | |
Fix cpu issue with cmp optimization, add HINT and FRINTX (scalar) instructions, fix for NvFlinger sometimes missing free buffers
Diffstat (limited to 'ChocolArm64/Instruction/AInstEmitSystem.cs')
| -rw-r--r-- | ChocolArm64/Instruction/AInstEmitSystem.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ChocolArm64/Instruction/AInstEmitSystem.cs b/ChocolArm64/Instruction/AInstEmitSystem.cs index 6754be7a..f9d18602 100644 --- a/ChocolArm64/Instruction/AInstEmitSystem.cs +++ b/ChocolArm64/Instruction/AInstEmitSystem.cs @@ -9,6 +9,11 @@ namespace ChocolArm64.Instruction { static partial class AInstEmit { + public static void Hint(AILEmitterCtx Context) + { + //Execute as no-op. + } + public static void Mrs(AILEmitterCtx Context) { AOpCodeSystem Op = (AOpCodeSystem)Context.CurrOp; |
