Rev 2071 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2071 | Rev 2083 | ||
---|---|---|---|
Line 37... | Line 37... | ||
37 | 37 | ||
38 | #include <arch/types.h> |
38 | #include <arch/types.h> |
39 | 39 | ||
40 | #define FPU_CONTEXT_ALIGN sizeof(unative_t) |
40 | #define FPU_CONTEXT_ALIGN sizeof(unative_t) |
41 | 41 | ||
42 | struct fpu_context { |
42 | typedef struct { |
43 | unative_t dregs[32]; |
43 | unative_t dregs[32]; |
44 | unative_t cregs[32]; |
44 | unative_t cregs[32]; |
45 | }; |
45 | } fpu_context_t; |
46 | 46 | ||
47 | #endif |
47 | #endif |
48 | 48 | ||
49 | /** @} |
49 | /** @} |
50 | */ |
50 | */ |