coreboot-kgpe-d16/src/cpu/x86/fpu/enable_fpu.inc

10 lines
160 B
PHP
Raw Normal View History

/* preserve BIST in %eax */
movl %eax, %ebp
/* Disable floating point emulation */
movl %cr0, %eax
andl $~(1<<2), %eax
movl %eax, %cr0
movl %ebp, %eax