ArmCommon.h 713 B

1234567891011121314151617181920212223242526272829
  1. // Copyright 2014 Dolphin Emulator Project
  2. // Licensed under GPLv2+
  3. // Refer to the license.txt file included.
  4. #include "Common/CommonTypes.h"
  5. enum CCFlags
  6. {
  7. CC_EQ = 0, // Equal
  8. CC_NEQ, // Not equal
  9. CC_CS, // Carry Set
  10. CC_CC, // Carry Clear
  11. CC_MI, // Minus (Negative)
  12. CC_PL, // Plus
  13. CC_VS, // Overflow
  14. CC_VC, // No Overflow
  15. CC_HI, // Unsigned higher
  16. CC_LS, // Unsigned lower or same
  17. CC_GE, // Signed greater than or equal
  18. CC_LT, // Signed less than
  19. CC_GT, // Signed greater than
  20. CC_LE, // Signed less than or equal
  21. CC_AL, // Always (unconditional) 14
  22. CC_HS = CC_CS, // Alias of CC_CS Unsigned higher or same
  23. CC_LO = CC_CC, // Alias of CC_CC Unsigned lower
  24. };
  25. const u32 NO_COND = 0xE0000000;