summaryrefslogtreecommitdiff
path: root/kernel/multiboot.h
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-23 03:20:56 +0200
committerMiguel <m.i@gmx.at>2018-08-23 03:20:56 +0200
commit4404fa9b3d98646f942e32146722a9d0a68edc13 (patch)
tree79e494ec81a462db0217fc763a7ddae1827c02bd /kernel/multiboot.h
parent98bf7b67543b36b6fe49f2b68c115ebeaf630603 (diff)
never ending struggle with forking
Diffstat (limited to 'kernel/multiboot.h')
-rw-r--r--kernel/multiboot.h11
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