don't generate C source code file but use objcopy to include the SMM blob.
[coreboot.git] / src / cpu / x86 / sse_enable.inc
1         /* preserve BIST in %eax */
2         movl %eax, %ebp
3
4         /*
5          * Enable the use of the xmm registers
6          */
7
8         /* Enable sse instructions */
9         movl    %cr4, %eax
10         orl     $(1<<9), %eax
11         movl    %eax, %cr4
12
13         movl    %ebp, %eax
14