summaryrefslogtreecommitdiff
path: root/arch/i386/boot/boot.s
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.xyz>2021-08-30 08:26:05 -0500
committerDanny Holman <dholman@gymli.xyz>2021-08-30 08:26:05 -0500
commit7bf2c634fdb55d67affe74a2ed0a157610308942 (patch)
treec8a0d7bbc1b03669e10a8b18d6b453708e099378 /arch/i386/boot/boot.s
parent8cd620d25f31c4e0a87d6099accd9915e93a5815 (diff)
i386: create idt.c and isr.s
Create files that add IDT support for i386. Signed-off-by: Danny Holman <dholman@gymli.xyz>
Diffstat (limited to 'arch/i386/boot/boot.s')
-rw-r--r--arch/i386/boot/boot.s3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/i386/boot/boot.s b/arch/i386/boot/boot.s
index 842519f..e0005bb 100644
--- a/arch/i386/boot/boot.s
+++ b/arch/i386/boot/boot.s
@@ -68,8 +68,9 @@ _start:
movl $stack_top, %esp
- call tty_init
call gdt_install
+ call idt_install
+
call kernel_main
cli