endian.h 306 B

123456789101112
  1. /* The Nios II architecture has selectable endianness. */
  2. #ifndef _ENDIAN_H
  3. # error "Never use <bits/endian.h> directly; include <endian.h> instead."
  4. #endif
  5. #ifdef __nios2_big_endian__
  6. # define __BYTE_ORDER __BIG_ENDIAN
  7. #endif
  8. #ifdef __nios2_little_endian__
  9. # define __BYTE_ORDER __LITTLE_ENDIAN
  10. #endif