opcodes.h 537 B

1234567891011121314151617181920
  1. /*
  2. * arch/arm/include/asm/opcodes.h
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #ifndef __ASM_ARM_OPCODES_H
  9. #define __ASM_ARM_OPCODES_H
  10. #ifndef __ASSEMBLY__
  11. extern asmlinkage unsigned int arm_check_condition(u32 opcode, u32 psr);
  12. #endif
  13. #define ARM_OPCODE_CONDTEST_FAIL 0
  14. #define ARM_OPCODE_CONDTEST_PASS 1
  15. #define ARM_OPCODE_CONDTEST_UNCOND 2
  16. #endif /* __ASM_ARM_OPCODES_H */