- Timestamp:
- 2006-03-03T00:20:31Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 09c18f78
- Parents:
- ddcf365
- Location:
- arch/ia32
- Files:
-
- 2 edited
-
include/fpu_context.h (modified) (1 diff)
-
src/fpu_context.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/include/fpu_context.h
rddcf365 rf76fed4 32 32 #include <arch/types.h> 33 33 34 #define ARCH_HAS_FPU 35 #define FPU_CONTEXT_ALIGN 16 36 34 37 struct fpu_context { 35 38 /* TODO: We need malloc that aligns structures on 16-byte boundary */ 36 __u8 fpu[512 +16]; /* FXSAVE & FXRSTOR storage area */39 __u8 fpu[512]; /* FXSAVE & FXRSTOR storage area */ 37 40 }; 38 41 -
arch/ia32/src/fpu_context.c
rddcf365 rf76fed4 49 49 } 50 50 51 void fpu_init( fpu_context_t *fctx)51 void fpu_init() 52 52 { 53 53 __asm__ volatile (
Note:
See TracChangeset
for help on using the changeset viewer.
