aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Decoders/IOpCodeAluRx.cs
blob: 9d16be7878caa3008233fa46948373082f99e57a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace ARMeilleure.Decoders
{
    interface IOpCodeAluRx : IOpCodeAlu
    {
        int Shift { get; }
        int Rm    { get; }

        IntType IntType { get; }
    }
}