diff options
Diffstat (limited to 'ChocolArm64/Decoder/AOpCodeSimdExt.cs')
| -rw-r--r-- | ChocolArm64/Decoder/AOpCodeSimdExt.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ChocolArm64/Decoder/AOpCodeSimdExt.cs b/ChocolArm64/Decoder/AOpCodeSimdExt.cs new file mode 100644 index 00000000..cf22d654 --- /dev/null +++ b/ChocolArm64/Decoder/AOpCodeSimdExt.cs @@ -0,0 +1,14 @@ +using ChocolArm64.Instruction; + +namespace ChocolArm64.Decoder +{ + class AOpCodeSimdExt : AOpCodeSimdReg + { + public int Imm4 { get; private set; } + + public AOpCodeSimdExt(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode) + { + int Imm4 = (OpCode >> 11) & 0xf; + } + } +}
\ No newline at end of file |
