mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-12 19:19:30 +00:00
Kernel: Parse boot modules from Multiboot specification
This commit is contained in:
parent
3cbe805486
commit
ec056f3bd1
Notes:
sideshowbarker
2024-07-18 22:57:48 +09:00
Author: https://github.com/boricj
Commit: ec056f3bd1
Pull-request: https://github.com/SerenityOS/serenity/pull/5028
Reviewed-by: https://github.com/awesomekling
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