Changeset 3a4ae6c in rtems for cpukit/score/cpu/i386
- Timestamp:
- Sep 11, 1995, 7:35:39 PM (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ced11f99
- Parents:
- 5072b07
- Location:
- cpukit/score/cpu/i386
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/cpu/i386/asm.h
r5072b07 r3a4ae6c 32 32 33 33 #define ASM 34 #include <rtems/ i386.h>34 #include <rtems/core/i386.h> 35 35 36 36 /* -
cpukit/score/cpu/i386/cpu.c
r5072b07 r3a4ae6c 16 16 #include <rtems/system.h> 17 17 #include <rtems/fatal.h> 18 #include <rtems/ isr.h>19 #include <rtems/ wkspace.h>18 #include <rtems/core/isr.h> 19 #include <rtems/core/wkspace.h> 20 20 21 21 /* _CPU_Initialize … … 36 36 register unsigned16 fp_status asm ("ax"); 37 37 register unsigned8 *fp_context; 38 39 if ( cpu_table == NULL )40 rtems_fatal_error_occurred( RTEMS_NOT_CONFIGURED );41 38 42 39 _CPU_Table = *cpu_table; … … 68 65 } 69 66 67 /*PAGE 68 * 69 * _CPU_ISR_Get_level 70 */ 71 72 unsigned32 _CPU_ISR_Get_level( void ) 73 { 74 unsigned32 level; 75 76 i386_get_interrupt_level( level ); 77 78 return level; 79 } 80 70 81 /*PAGE 71 82 * -
cpukit/score/cpu/i386/rtems/asm.h
r5072b07 r3a4ae6c 32 32 33 33 #define ASM 34 #include <rtems/ i386.h>34 #include <rtems/core/i386.h> 35 35 36 36 /*
Note: See TracChangeset
for help on using the changeset viewer.