Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/include/fpu_context.h

    r9d58539 r37bb3e1  
    4141#include <typedefs.h>
    4242
    43 #define FPU_CONTEXT_ALIGN    0
     43#define FPU_CONTEXT_ALIGN    8
    4444
     45/* ARM Architecture reference manual, p B-1529.
     46 */
    4547typedef struct {
     48        uint32_t fpexc;
     49        uint32_t fpscr;
     50        uint32_t s[64];
    4651} fpu_context_t;
     52
     53void fpu_setup(void);
     54
     55bool handle_if_fpu_exception(void);
    4756
    4857#endif
Note: See TracChangeset for help on using the changeset viewer.