From 1814e62a3f2c54e663c3acdc085cff3f4b410cf9 Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jackpot51@gmail.com>
Date: Mon, 12 Sep 2016 20:37:22 -0600
Subject: [PATCH] Initialize FPU and SSE on APs

---
 x86_64/startup-x86_64.asm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/x86_64/startup-x86_64.asm b/x86_64/startup-x86_64.asm
index 1d1c9ea..9cb683b 100644
--- a/x86_64/startup-x86_64.asm
+++ b/x86_64/startup-x86_64.asm
@@ -19,6 +19,9 @@ startup_ap:
     ; initialize stack
     mov sp, 0x7C00
 
+    call initialize.fpu
+    call initialize.sse
+
     ;cr3 holds pointer to PML4
     mov edi, 0x70000
     mov cr3, edi
-- 
GitLab