IOpCode32AluUx.cs 155 B

12345678
  1. namespace ARMeilleure.Decoders
  2. {
  3. interface IOpCode32AluUx : IOpCode32AluReg
  4. {
  5. int RotateBits { get; }
  6. bool Add { get; }
  7. }
  8. }