diff options
Diffstat (limited to 'ChocolArm64/Decoder/AOpCodeSimdMemPair.cs')
| -rw-r--r-- | ChocolArm64/Decoder/AOpCodeSimdMemPair.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ChocolArm64/Decoder/AOpCodeSimdMemPair.cs b/ChocolArm64/Decoder/AOpCodeSimdMemPair.cs new file mode 100644 index 00000000..db99e3d4 --- /dev/null +++ b/ChocolArm64/Decoder/AOpCodeSimdMemPair.cs @@ -0,0 +1,16 @@ +using ChocolArm64.Instruction; + +namespace ChocolArm64.Decoder +{ + class AOpCodeSimdMemPair : AOpCodeMemPair, IAOpCodeSimd + { + public AOpCodeSimdMemPair(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode) + { + Size = ((OpCode >> 30) & 3) + 2; + + Extend64 = false; + + DecodeImm(OpCode); + } + } +}
\ No newline at end of file |
