aboutsummaryrefslogtreecommitdiff
path: root/src/kernel.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel.c')
-rw-r--r--src/kernel.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/kernel.c b/src/kernel.c
index b652c23..a9fc126 100644
--- a/src/kernel.c
+++ b/src/kernel.c
@@ -5,24 +5,14 @@
//=====================================================================
#include "mem.h"
-
-#include <gdt.h>
-#include <idt.h>
#include <stdio.h>
-
#include "devices/pic.h"
#include "devices/uart_16550.h"
#include "devices/vga.h"
-
#include <conf.h>
#include <sys/cpuid.h>
void kmain() {
- pic_init();
-
- gdt_install();
- idt_install();
-
if (uart_init(COM1) != 0) printf("UART self-test failed.\r\n");
printf("glitch [version " VERSION "] [" CC "]\n");