aboutsummaryrefslogtreecommitdiff
path: root/i686/init.s
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2022-10-31 15:39:51 +0200
committeraqua <aqua@iserlohn-fortress.net>2022-10-31 21:59:49 +0200
commitcbd3cdf7cb34529e269bb27c654765a0c9c21799 (patch)
tree4ee555d5cb575af003e10e597666b4a7b17b17a7 /i686/init.s
parentmakefile: auto-generate OBJS from SRCS (diff)
downloadkernel-cbd3cdf7cb34529e269bb27c654765a0c9c21799.tar.xz
add ps2_keyboard driver
Diffstat (limited to 'i686/init.s')
-rw-r--r--i686/init.s2
1 files changed, 1 insertions, 1 deletions
diff --git a/i686/init.s b/i686/init.s
index c0c25c0..d16de51 100644
--- a/i686/init.s
+++ b/i686/init.s
@@ -37,9 +37,9 @@ k_init:
mov $k_stack, %esp # point stack pointer to the stack
# hardware init
- call pic_init # Programmable Interrupt Controller
call gdt_install # Global Descriptor Table
call idt_install # Interrupt Descriptor Table
+ call pic_init # Programmable Interrupt Controller
# jump into kernel
call kmain