aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Decoders/IOpCode32AluUx.cs
blob: d03c7e219c886152dcd1c2c973806c9780a4eb79 (plain) (blame)
1
2
3
4
5
6
7
8
namespace ARMeilleure.Decoders
{
    interface IOpCode32AluUx : IOpCode32AluReg
    {
        int RotateBits { get; }
        bool Add { get; }
    }
}