summaryrefslogtreecommitdiff
path: root/Kernel/init.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-01-25 05:01:27 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-01-25 05:02:32 +0100
commit0db72786cf8b3e70798ec5d2cdfd3bacd5a032d4 (patch)
tree317cadd37d9197a382bc2a6323f451cfde57ae3c /Kernel/init.cpp
parentc6b7b92625fc762ab300aeef78de7090550000cb (diff)
downloadserenity-0db72786cf8b3e70798ec5d2cdfd3bacd5a032d4.zip
Snazz up the windows with some title bar gradients. :^)
Diffstat (limited to 'Kernel/init.cpp')
-rw-r--r--Kernel/init.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Kernel/init.cpp b/Kernel/init.cpp
index 4df345664e..0e1f835d8f 100644
--- a/Kernel/init.cpp
+++ b/Kernel/init.cpp
@@ -138,6 +138,10 @@ void init()
gdt_init();
idt_init();
+#ifndef NO_FPU
+ asm volatile("fninit");
+#endif
+
VFS::initialize_globals();
vfs = new VFS;