ShiftType.cs 132 B

12345678910
  1. namespace ARMeilleure.Decoders
  2. {
  3. enum ShiftType
  4. {
  5. Lsl = 0,
  6. Lsr = 1,
  7. Asr = 2,
  8. Ror = 3
  9. }
  10. }