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:
parent
3cbe805486
commit
ec056f3bd1
4 changed files with 68 additions and 15 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue