aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/IOpCode32.cs
blob: 3353ffe8d8a9de9a4fe22bb421477745c2da19c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace ChocolArm64.Decoders
{
    interface IOpCode32 : IOpCode64
    {
        Condition Cond { get; }

        uint GetPc();
    }
}