summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 725f438..0022a4c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -4,6 +4,8 @@
#include "vga.h"
#include "interrupt.h"
#include "string.h"
+#include "multiboot.h"
+#include "printf.h"
extern void *gdt;
@@ -27,7 +29,7 @@ const char *pope =
"by means of its diplomatic relations and political accords with many \n"
"independent states.\n";
-void kernel_main(void) {
+void kernel_main(multiboot_info_t *mbd) {
vsetcolor(vga_color(vga_black, vga_white));
vclear();
interrupt_init();