選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

endian.h 695B

12345678910111213141516171819
  1. #ifndef ETHERBOOT_ENDIAN_H
  2. #define ETHERBOOT_ENDIAN_H
  3. /* Definitions for byte order, according to significance of bytes,
  4. from low addresses to high addresses. The value is what you get by
  5. putting '4' in the most significant byte, '3' in the second most
  6. significant byte, '2' in the second least significant byte, and '1'
  7. in the least significant byte, and then writing down one digit for
  8. each byte, starting with the byte at the lowest address at the left,
  9. and proceeding to the byte with the highest address at the right. */
  10. #define __LITTLE_ENDIAN 1234
  11. #define __BIG_ENDIAN 4321
  12. #define __PDP_ENDIAN 3412
  13. #include "bits/endian.h"
  14. #endif /* ETHERBOOT_ENDIAN_H */