31e40c8ce1
MIPS32 4Kc CPU board, with support for the MIPS64 5Kc and the QED RM5261 CPU boards to follow. The cs4281 audio hasn't been tested, there are some interrupt problems with onboard the pciide, but all other on-board peripherals work. The evbmips port will support more MIPS evaluation boards in the future.
12 lines
290 B
C
12 lines
290 B
C
/* $NetBSD: endian_machdep.h,v 1.1 2002/03/07 14:44:00 simonb Exp $ */
|
|
|
|
#if defined(__MIPSEB__)
|
|
#define _BYTE_ORDER _BIG_ENDIAN
|
|
#elif defined(__MIPSEL__)
|
|
#define _BYTE_ORDER _LITTLE_ENDIAN
|
|
#else
|
|
#error neither __MIPSEL__ nor __MIPSEB__ are defined.
|
|
#endif
|
|
|
|
#include <mips/endian_machdep.h>
|