Changeset e8367362 in rtems
- Timestamp:
- 08/18/99 19:57:40 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- f2180e0f
- Parents:
- 6fc973e
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/i960/rtems/score/i960.h
r6fc973e re8367362 29 29 * in a particular member of the family. 30 30 * 31 * NOTE: For now i960 is really the i960ca. eventually need 32 * to put in at least support for FPU. 33 */ 34 35 #if defined(__i960CA__) 31 * NOTE: For now i960 support is for models without an FPU. 32 * The stubs for FP routines are in place so only need to be filled in. 33 * 34 * NOTE: RTEMS defines a canonical name for each cpu model. 35 */ 36 37 #if defined(__i960CA__) || defined(__i960_CA__) || defined(__i960CA) 36 38 37 39 #define CPU_MODEL_NAME "i960ca" 40 #define __RTEMS__i960CA__ 38 41 #define I960_HAS_FPU 0 39 42 40 #elif defined( i960ha)43 #elif defined(__i960HA__) || defined(__i960_HA__) || defined(__i960HA) 41 44 42 45 #define CPU_MODEL_NAME "i960ha" 46 #define __RTEMS_I960HA__ 43 47 #define I960_HAS_FPU 0 44 48 … … 62 66 */ 63 67 64 #if defined(__ i960CA__)68 #if defined(__RTEMS_I960CA__) 65 69 66 70 /* i960CA control structures */ … … 127 131 typedef i960ca_PRCB i960_PRCB; 128 132 129 #elif defined(__ i960HA__) || defined(__i960_HA__) || defined(__i960HA)133 #elif defined(__RTEMS_I960HA__) 130 134 131 135 /* i960HA control structures */ -
cpukit/score/cpu/i960/rtems/score/i960.h
r6fc973e re8367362 29 29 * in a particular member of the family. 30 30 * 31 * NOTE: For now i960 is really the i960ca. eventually need 32 * to put in at least support for FPU. 33 */ 34 35 #if defined(__i960CA__) 31 * NOTE: For now i960 support is for models without an FPU. 32 * The stubs for FP routines are in place so only need to be filled in. 33 * 34 * NOTE: RTEMS defines a canonical name for each cpu model. 35 */ 36 37 #if defined(__i960CA__) || defined(__i960_CA__) || defined(__i960CA) 36 38 37 39 #define CPU_MODEL_NAME "i960ca" 40 #define __RTEMS__i960CA__ 38 41 #define I960_HAS_FPU 0 39 42 40 #elif defined( i960ha)43 #elif defined(__i960HA__) || defined(__i960_HA__) || defined(__i960HA) 41 44 42 45 #define CPU_MODEL_NAME "i960ha" 46 #define __RTEMS_I960HA__ 43 47 #define I960_HAS_FPU 0 44 48 … … 62 66 */ 63 67 64 #if defined(__ i960CA__)68 #if defined(__RTEMS_I960CA__) 65 69 66 70 /* i960CA control structures */ … … 127 131 typedef i960ca_PRCB i960_PRCB; 128 132 129 #elif defined(__ i960HA__) || defined(__i960_HA__) || defined(__i960HA)133 #elif defined(__RTEMS_I960HA__) 130 134 131 135 /* i960HA control structures */
Note: See TracChangeset
for help on using the changeset viewer.