byteorder.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _M68K_BYTEORDER_H
  2. #define _M68K_BYTEORDER_H
  3. #include <asm/types.h>
  4. #ifdef __GNUC__
  5. static __inline__ __const__ __u32 ___arch__swab32(__u32 val)
  6. {
  7. __asm__("rolw #8,%0; swap %0; rolw #8,%0" : "=d" (val) : "0" (val));
  8. return val;
  9. }
  10. #define __arch__swab32(x) ___arch__swab32(x)
  11. #endif
  12. #if defined(__GNUC__) && !defined(__STRICT_ANSI__) || defined(__KERNEL__)
  13. #  define __BYTEORDER_HAS_U64__
  14. #  define __SWAB_64_THRU_32__
  15. #endif
  16. #include <linux/byteorder/big_endian.h>
  17. #endif /* _M68K_BYTEORDER_H */