- Moved hlt() to it's own header.
[coreboot.git] / src / cpu / k8 / enable_mmx_sse.inc
index 5551525d68394865d45327c6cf1154e2dc4a268d..907e817325a968dc8ea2624d62895c392870448b 100644 (file)
@@ -1,3 +1,6 @@
+       /* Save the BIST result */
+       movl    %eax, %ebp
+       
        /*
         * Enabling mmx registers is a noop
         * Enable the use of the xmm registers
@@ -12,3 +15,6 @@
        movl    %cr4, %eax
        orl     $(1<<9), %eax
        movl    %eax, %cr4
+
+       /* Restore the BIST result */
+       movl    %ebp, %eax