aboutsummaryrefslogtreecommitdiff
path: root/src/boot/multiboot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot/multiboot.h')
-rw-r--r--src/boot/multiboot.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/boot/multiboot.h b/src/boot/multiboot.h
index 010f60b..9eae31f 100644
--- a/src/boot/multiboot.h
+++ b/src/boot/multiboot.h
@@ -1,7 +1,8 @@
#ifndef MULTIBOOT_H
#define MULTIBOOT_H
-#include "utils/types.h"
+#include "core/types.h"
+#include "core/mem.h"
typedef struct MBI_TAG_HEADER {
u32 type;
@@ -29,10 +30,12 @@ typedef struct MBI_TAG_FB {
* Parse Bootloader boot information structure
*/
char mb_load_tag(char **data, char type);
+
/**
* Search for Bootloader name
*/
char mb_load_bl_name(MBI_TAG_BL_NAME *data);
+
/**
* Search for FrameBuffer structure (TODO: Finish)
*/