Update AInstEmitSystem.cs

This commit is contained in:
LDj3SNuD 2018-10-27 19:00:18 +02:00 committed by GitHub
parent 1aa0680327
commit 1a3f407e8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}
}
}