X86Condition.cs 550 B

12345678910111213141516171819202122
  1. namespace ARMeilleure.CodeGen.X86
  2. {
  3. enum X86Condition
  4. {
  5. Overflow = 0x0,
  6. NotOverflow = 0x1,
  7. Below = 0x2,
  8. AboveOrEqual = 0x3,
  9. Equal = 0x4,
  10. NotEqual = 0x5,
  11. BelowOrEqual = 0x6,
  12. Above = 0x7,
  13. Sign = 0x8,
  14. NotSign = 0x9,
  15. ParityEven = 0xa,
  16. ParityOdd = 0xb,
  17. Less = 0xc,
  18. GreaterOrEqual = 0xd,
  19. LessOrEqual = 0xe,
  20. Greater = 0xf
  21. }
  22. }