Subversion Repositories HelenOS

Rev

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 38... Line 38...
38
#include <arch/types.h>
38
#include <arch/types.h>
39
 
39
 
40
#define ARCH_HAS_FPU
40
#define ARCH_HAS_FPU
41
#define FPU_CONTEXT_ALIGN   8
41
#define FPU_CONTEXT_ALIGN   8
42
 
42
 
43
struct fpu_context {
43
typedef struct {
44
    uint64_t    d[32];
44
    uint64_t    d[32];
45
    uint64_t    fsr;
45
    uint64_t    fsr;
46
};
46
} fpu_context_t;
47
 
47
 
48
#endif
48
#endif
49
 
49
 
50
/** @}
50
/** @}
51
 */
51
 */