aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/x86/fpu/enable_fpu.inc
blob: e663e365acd5dd16be80bbe3ed9d6ef39d5d35c7 (plain)
1
2
3
4
5
6
7
8
9
	/* preserve BIST in %eax */
	movl %eax, %ebp

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

	movl %ebp, %eax