diff options
Diffstat (limited to 'ChocolArm64/Decoders/IOpCodeAluImm64.cs')
| -rw-r--r-- | ChocolArm64/Decoders/IOpCodeAluImm64.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ChocolArm64/Decoders/IOpCodeAluImm64.cs b/ChocolArm64/Decoders/IOpCodeAluImm64.cs new file mode 100644 index 00000000..4b305e27 --- /dev/null +++ b/ChocolArm64/Decoders/IOpCodeAluImm64.cs @@ -0,0 +1,7 @@ +namespace ChocolArm64.Decoders +{ + interface IOpCodeAluImm64 : IOpCodeAlu64 + { + long Imm { get; } + } +}
\ No newline at end of file |
