1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:57:45 +00:00

Kernel: Parse boot modules from Multiboot specification

This commit is contained in:
Jean-Baptiste Boric 2021-01-19 19:13:03 +01:00 committed by Andreas Kling
parent 3cbe805486
commit ec056f3bd1
4 changed files with 68 additions and 15 deletions

View file

@ -28,6 +28,14 @@
#include <AK/Types.h>
struct multiboot_module_entry {
u32 start;
u32 end;
u32 string_addr;
u32 reserved;
};
typedef struct multiboot_module_entry multiboot_module_entry_t;
struct multiboot_aout_symbol_table {
u32 tabsize;
u32 strsize;