aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/IOpCodeAluImm64.cs
blob: 4b305e27b7030885c3d6f82dd89733c5d45fb4ff (plain) (blame)
1
2
3
4
5
6
7
namespace ChocolArm64.Decoders
{
    interface IOpCodeAluImm64 : IOpCodeAlu64
    {
        long Imm { get; }
    }
}