aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/Decoders/IOpCodeAluRx.cs
blob: e5a8559d83bb0d8e228654b6b7108e84c66b0cb3 (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; }
    }
}