diff options
Diffstat (limited to 'ChocolArm64/Decoders/OpCodeMemEx64.cs')
| -rw-r--r-- | ChocolArm64/Decoders/OpCodeMemEx64.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ChocolArm64/Decoders/OpCodeMemEx64.cs b/ChocolArm64/Decoders/OpCodeMemEx64.cs new file mode 100644 index 00000000..39935eb3 --- /dev/null +++ b/ChocolArm64/Decoders/OpCodeMemEx64.cs @@ -0,0 +1,16 @@ +using ChocolArm64.Instructions; + +namespace ChocolArm64.Decoders +{ + class OpCodeMemEx64 : OpCodeMem64 + { + public int Rt2 { get; private set; } + public int Rs { get; private set; } + + public OpCodeMemEx64(Inst inst, long position, int opCode) : base(inst, position, opCode) + { + Rt2 = (opCode >> 10) & 0x1f; + Rs = (opCode >> 16) & 0x1f; + } + } +}
\ No newline at end of file |
