aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoder/IAOpCodeAluRx.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Decoder/IAOpCodeAluRx.cs')
-rw-r--r--ChocolArm64/Decoder/IAOpCodeAluRx.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChocolArm64/Decoder/IAOpCodeAluRx.cs b/ChocolArm64/Decoder/IAOpCodeAluRx.cs
new file mode 100644
index 00000000..b49d5325
--- /dev/null
+++ b/ChocolArm64/Decoder/IAOpCodeAluRx.cs
@@ -0,0 +1,10 @@
+namespace ChocolArm64.Decoder
+{
+ interface IAOpCodeAluRx : IAOpCodeAlu
+ {
+ int Shift { get; }
+ int Rm { get; }
+
+ AIntType IntType { get; }
+ }
+} \ No newline at end of file