diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-03-02 19:21:54 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-03-02 19:23:38 -0300 |
| commit | f39a864050589ac7e757a9d72b46ac693125b382 (patch) | |
| tree | ba56ae59aabca61e0efd4d68ce227b93a6b78477 /ChocolArm64/Decoder/AOpCodeSimdExt.cs | |
| parent | 1d71e33171f78fb40b097108fbd5915f18c608c4 (diff) | |
Add EXT, CMTST (vector) and UMULL (vector) instructions
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 |
