aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/IOpCodeLit64.cs
blob: c6dc2c7fc192c11ad3ce8acb7832b1c7f2bbd91a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace ChocolArm64.Decoders
{
    interface IOpCodeLit64 : IOpCode64
    {
        int  Rt       { get; }
        long Imm      { get; }
        int  Size     { get; }
        bool Signed   { get; }
        bool Prefetch { get; }
    }
}