aboutsummaryrefslogtreecommitdiff
path: root/bbl/bbl.h
diff options
context:
space:
mode:
Diffstat (limited to 'bbl/bbl.h')
-rw-r--r--bbl/bbl.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/bbl/bbl.h b/bbl/bbl.h
new file mode 100644
index 0000000..e9e1dab
--- /dev/null
+++ b/bbl/bbl.h
@@ -0,0 +1,23 @@
+// See LICENSE for license details.
+
+#ifndef _BBL_H
+#define _BBL_H
+
+#ifndef __ASSEMBLER__
+
+#include <stdint.h>
+#include <stddef.h>
+
+typedef struct {
+ uintptr_t entry;
+ uintptr_t first_user_vaddr;
+ uintptr_t first_vaddr_after_user;
+ uintptr_t load_offset;
+} kernel_elf_info;
+
+void load_kernel_elf(void* blob, size_t size, kernel_elf_info* info);
+void print_logo();
+
+#endif // !__ASSEMBLER__
+
+#endif