diff options
Diffstat (limited to 'kernel/multiboot.h')
| -rw-r--r-- | kernel/multiboot.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/kernel/multiboot.h b/kernel/multiboot.h index 560bae4..49f239f 100644 --- a/kernel/multiboot.h +++ b/kernel/multiboot.h @@ -1,12 +1,18 @@ +/** + * @file + * + * This Structures ars defined by the multiboot specification and you will + * get them from your bootloader. + */ + //# https://www.gnu.org/software/grub/manual/multiboot/multiboot.html#Boot-information-format + #ifndef MULTIBOOT_H #define MULTIBOOT_H - #include <stdbool.h> #include <stdint.h> - typedef struct multiboot_information_struct { uint32_t flags; @@ -58,7 +64,6 @@ typedef struct multiboot_mod_struct }multiboot_mod; - multiboot_information* get_multiboot(uint32_t eax, uint32_t ebx); #endif |
