Changeset ca201c9 in rtems
- Timestamp:
- 12/05/95 15:28:12 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 76b6fd0c
- Parents:
- 11ab74e
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/hppa1.1/cpu.c
r11ab74e rca201c9 19 19 20 20 #include <rtems/system.h> 21 #include <rtems/fatal.h> 22 #include <rtems/core/isr.h> 23 #include <rtems/core/wkspace.h> 21 #include <rtems/score/isr.h> 24 22 25 23 void hppa_external_interrupt_initialize(void); -
c/src/exec/score/cpu/hppa1.1/cpu.h
r11ab74e rca201c9 31 31 #endif 32 32 33 #include <rtems/ core/hppa.h> /* pick up machine definitions */33 #include <rtems/score/hppa.h> /* pick up machine definitions */ 34 34 #ifndef ASM 35 #include <rtems/ core/hppatypes.h>35 #include <rtems/score/hppatypes.h> 36 36 #endif 37 37 -
c/src/exec/score/cpu/hppa1.1/cpu_asm.s
r11ab74e rca201c9 28 28 # 29 29 30 #include <rtems/ core/hppa.h>31 #include <rtems/ core/cpu_asm.h>32 #include <rtems/ core/cpu.h>33 34 #include <rtems/ core/offsets.h>30 #include <rtems/score/hppa.h> 31 #include <rtems/score/cpu_asm.h> 32 #include <rtems/score/cpu.h> 33 34 #include <rtems/score/offsets.h> 35 35 36 36 .SPACE $PRIVATE$ -
c/src/exec/score/cpu/hppa1.1/hppa.h
r11ab74e rca201c9 65 65 */ 66 66 67 #if !defined( RTEMS_MODEL_NAME)67 #if !defined(CPU_MODEL_NAME) 68 68 69 69 #if defined(hppa7100) 70 70 71 #define RTEMS_MODEL_NAME "hppa 7100"71 #define CPU_MODEL_NAME "hppa 7100" 72 72 73 73 #elif defined(hppa7200) 74 74 75 #define RTEMS_MODEL_NAME "hppa 7200"75 #define CPU_MODEL_NAME "hppa 7200" 76 76 77 77 #else 78 78 79 #define RTEMS_MODEL_NAME Unsupported CPU Model /* cause an error on usage */79 #define CPU_MODEL_NAME Unsupported CPU Model /* cause an error on usage */ 80 80 81 81 #endif 82 82 83 #endif /* !defined( RTEMS_MODEL_NAME) */83 #endif /* !defined(CPU_MODEL_NAME) */ 84 84 85 85 /* -
cpukit/score/cpu/hppa1.1/cpu.c
r11ab74e rca201c9 19 19 20 20 #include <rtems/system.h> 21 #include <rtems/fatal.h> 22 #include <rtems/core/isr.h> 23 #include <rtems/core/wkspace.h> 21 #include <rtems/score/isr.h> 24 22 25 23 void hppa_external_interrupt_initialize(void);
Note: See TracChangeset
for help on using the changeset viewer.