aboutsummaryrefslogtreecommitdiff
path: root/src/boot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot.h')
-rw-r--r--src/boot.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/boot.h b/src/boot.h
deleted file mode 100644
index 8d62bdc..0000000
--- a/src/boot.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#pragma once
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-typedef struct {
- // kernel command line
- char cmdline[64];
-
- // memory map
- unsigned bitmap[1024 * 32];
-
- // module
- unsigned module_start;
- unsigned module_end;
- char module_cmdline[64];
-} boot_info_t;
-
-_Static_assert((1024 * 32 * sizeof(unsigned) * 8) == (1024 * 1024), "bitmap size check");
-
-#ifdef __cplusplus
-}
-#endif