Subversion Repositories HelenOS-historic

Rev

Rev 534 | Rev 924 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 534 Rev 906
Line 29... Line 29...
29
#ifndef __mips32_FPU_CONTEXT_H__
29
#ifndef __mips32_FPU_CONTEXT_H__
30
#define __mips32_FPU_CONTEXT_H__
30
#define __mips32_FPU_CONTEXT_H__
31
 
31
 
32
#include <arch/types.h>
32
#include <arch/types.h>
33
 
33
 
-
 
34
#define ARCH_HAS_FPU
-
 
35
#define FPU_CONTEXT_ALIGN    sizeof(__native)
-
 
36
 
34
struct fpu_context {
37
struct fpu_context {
35
    __native dregs[32];
38
    __native dregs[32];
36
    __native cregs[32];
39
    __native cregs[32];
37
};
40
};
38
 
41