Changes in kernel/arch/arm32/include/fpu_context.h [9d58539:37bb3e1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/fpu_context.h
r9d58539 r37bb3e1 41 41 #include <typedefs.h> 42 42 43 #define FPU_CONTEXT_ALIGN 043 #define FPU_CONTEXT_ALIGN 8 44 44 45 /* ARM Architecture reference manual, p B-1529. 46 */ 45 47 typedef struct { 48 uint32_t fpexc; 49 uint32_t fpscr; 50 uint32_t s[64]; 46 51 } fpu_context_t; 52 53 void fpu_setup(void); 54 55 bool handle_if_fpu_exception(void); 47 56 48 57 #endif
Note:
See TracChangeset
for help on using the changeset viewer.