aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoder/IAOpCode.cs
blob: 44bf9cb2f1d1ba0812584730a3c37ef1274ce3c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using ChocolArm64.Instruction;
using ChocolArm64.State;

namespace ChocolArm64.Decoder
{
    interface IAOpCode
    {
        long Position { get; }

        AInstEmitter  Emitter      { get; }
        ARegisterSize RegisterSize { get; }
    }
}