Move files from src/cpu/x86/{fpu,mmx,sse}/ to x86/
[coreboot.git] / src / cpu / x86 / fpu_enable.inc
1         /* preserve BIST in %eax */
2 __fpu_start:
3         movl %eax, %ebp
4
5         /* Disable floating point emulation */
6         movl    %cr0, %eax
7         andl    $~(1<<2), %eax
8         movl    %eax, %cr0
9
10         movl %ebp, %eax