diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-12 10:13:21 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-12 10:13:21 +0200 |
| commit | 39713a3736145483dd3310c3605f940ca34f05c3 (patch) | |
| tree | d4dcdf0f3b667a5d706aa4b04501a71facf186bd /src/boot | |
| parent | 6edeba8fe208fb019aec00fdc72b97407a8078d3 (diff) | |
Refactoring
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) */ |
