2003-03-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* rtems/score/cpu.h: Set up CPU_*_ENDIAN based on -D__ARMEL__ and
	-D__ARMEB__. Fix minor typo in comment.
This commit is contained in:
Ralf Corsepius
2003-03-02 06:19:42 +00:00
parent 3f5a592004
commit fec45040bc
2 changed files with 16 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2003-03-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* rtems/score/cpu.h: Set up CPU_*_ENDIAN based on -D__ARMEL__ and
-D__ARMEB__. Fix minor typo in comment.
2003-02-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* rtems/score/arm.h: Set up ARM_HAS_FPU based on -D__SOFTFP__.

View File

@@ -278,9 +278,17 @@ extern "C" {
*/
#define CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES FALSE
#define CPU_BIG_ENDIAN FALSE
#define CPU_LITTLE_ENDIAN TRUE
#if defined(__ARMEL__)
#define CPU_BIG_ENDIAN FALSE
#define CPU_LITTLE_ENDIAN TRUE
#elif define(__ARMEB__)
#define CPU_BIG_ENDIAN TRUE
#define CPU_LITTLE_ENDIAN FALSE
#else
#error "Unknown endianness"
#endif
/*
* The following defines the number of bits actually used in the
* interrupt field of the task mode. How those bits map to the
@@ -774,7 +782,7 @@ void _CPU_Context_Initialize(
# define _CPU_Priority_bits_index( _priority ) \
(_priority)
# error "Implement CLZ verson of priority bit functions for ARMv5"
# error "Implement CLZ version of priority bit functions for ARMv5"
#endif
/* end of Priority handler macros */