Subversion Repositories HelenOS-historic

Rev

Rev 1769 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1769 Rev 1780
Line 35... Line 35...
35
#ifndef __mips32_FPU_CONTEXT_H__
35
#ifndef __mips32_FPU_CONTEXT_H__
36
#define __mips32_FPU_CONTEXT_H__
36
#define __mips32_FPU_CONTEXT_H__
37
 
37
 
38
#include <arch/types.h>
38
#include <arch/types.h>
39
 
39
 
40
#define FPU_CONTEXT_ALIGN    sizeof(__native)
40
#define FPU_CONTEXT_ALIGN    sizeof(unative_t)
41
 
41
 
42
struct fpu_context {
42
struct fpu_context {
43
    __native dregs[32];
43
    unative_t dregs[32];
44
    __native cregs[32];
44
    unative_t cregs[32];
45
};
45
};
46
 
46
 
47
#endif
47
#endif
48
 
48
 
49
/** @}
49
/** @}