Kernel: Multiboot data and kernel command lines are now global variables

This commit is contained in:
Bananymous
2023-01-10 17:50:24 +02:00
parent 1a65ea977d
commit c6467b8ebc
8 changed files with 117 additions and 24 deletions

View File

@@ -48,4 +48,5 @@ struct multiboot_info_t
framebuffer_info_t framebuffer;
} __attribute__((packed));
extern multiboot_info_t* s_multiboot_info;
extern "C" multiboot_info_t* g_multiboot_info;
extern "C" uint32_t g_multiboot_magic;