diff options
Diffstat (limited to 'src/boot')
| -rw-r--r-- | src/boot/multiboot.c | 1 | ||||
| -rw-r--r-- | src/boot/multiboot.h | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/boot/multiboot.c b/src/boot/multiboot.c index c41aeb7..71382d5 100644 --- a/src/boot/multiboot.c +++ b/src/boot/multiboot.c @@ -1,5 +1,4 @@ #include "multiboot.h" -#include "utils/mem.h" /// See boot.S extern u8* MB_INFO; 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) */ |
