From 1a3f407e8ef4ee651d6cfeadf957e8283eaf7ad2 Mon Sep 17 00:00:00 2001 From: LDj3SNuD <35856442+LDj3SNuD@users.noreply.github.com> Date: Sat, 27 Oct 2018 19:00:18 +0200 Subject: [PATCH] Update AInstEmitSystem.cs --- ChocolArm64/Instruction/AInstEmitSystem.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ChocolArm64/Instruction/AInstEmitSystem.cs b/ChocolArm64/Instruction/AInstEmitSystem.cs index 1c5d02634f..a365398ff7 100644 --- a/ChocolArm64/Instruction/AInstEmitSystem.cs +++ b/ChocolArm64/Instruction/AInstEmitSystem.cs @@ -14,6 +14,11 @@ namespace ChocolArm64.Instruction //Execute as no-op. } + public static void Isb(AILEmitterCtx Context) + { + //Execute as no-op. + } + public static void Mrs(AILEmitterCtx Context) { AOpCodeSystem Op = (AOpCodeSystem)Context.CurrOp; @@ -130,4 +135,4 @@ namespace ChocolArm64.Instruction return Id; } } -} \ No newline at end of file +}