diff options
Diffstat (limited to 'newlib/libc/machine/arm')
-rw-r--r-- | newlib/libc/machine/arm/machine/endian.h | 12 | ||||
-rw-r--r-- | newlib/libc/machine/arm/machine/param.h | 14 |
2 files changed, 26 insertions, 0 deletions
diff --git a/newlib/libc/machine/arm/machine/endian.h b/newlib/libc/machine/arm/machine/endian.h new file mode 100644 index 000000000..54844278b --- /dev/null +++ b/newlib/libc/machine/arm/machine/endian.h @@ -0,0 +1,12 @@ +/* ARM configuration file */ + +#ifndef _MACHINE_ENDIAN_H +# define _MACHINE_ENDIAN_H + +#ifdef __ARMEB__ +#define BYTE_ORDER BIG_ENDIAN +#else +#define BYTE_ORDER LITTLE_ENDIAN +#endif + +#endif diff --git a/newlib/libc/machine/arm/machine/param.h b/newlib/libc/machine/arm/machine/param.h new file mode 100644 index 000000000..595294cf3 --- /dev/null +++ b/newlib/libc/machine/arm/machine/param.h @@ -0,0 +1,14 @@ +/* ARM configuration file; HZ is 100 rather than the default 60 */ + +#ifndef _MACHINE_PARAM_H +# define _MACHINE_PARAM_H + +# define HZ (100) + +#ifdef __ARMEB__ +#define BYTE_ORDER BIG_ENDIAN +#else +#define BYTE_ORDER LITTLE_ENDIAN +#endif + +#endif |