This commit is contained in:
2026-06-14 00:34:11 -05:00
parent 4e8de774ef
commit 53c5d7d40c
12 changed files with 527 additions and 51 deletions

View File

@@ -1,3 +1,12 @@
#include <lib/stream.h>
#include <stddef.h>
#include "multiboot.h"
print_stream_t* kout;
print_stream_t* kout;
multiboot_info* grub_boot_struct_ptr = NULL;
extern char __kernel_start;
extern char __kernel_end;
size_t kernel_size() {
return (size_t)(&__kernel_end - &__kernel_start);
}