Move files from src/cpu/x86/{fpu,mmx,sse}/ to x86/
Signed-off-by: Peter Stuge <peter@stuge.se> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4803 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
14
src/cpu/x86/sse_enable.inc
Normal file
14
src/cpu/x86/sse_enable.inc
Normal file
@@ -0,0 +1,14 @@
|
||||
/* preserve BIST in %eax */
|
||||
movl %eax, %ebp
|
||||
|
||||
/*
|
||||
* Enable the use of the xmm registers
|
||||
*/
|
||||
|
||||
/* Enable sse instructions */
|
||||
movl %cr4, %eax
|
||||
orl $(1<<9), %eax
|
||||
movl %eax, %cr4
|
||||
|
||||
movl %ebp, %eax
|
||||
|
Reference in New Issue
Block a user