diff options
author | Danny Holman <dholman@gymli.org> | 2024-05-27 13:59:41 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2024-05-27 13:59:41 -0500 |
commit | fc70ab53e4868c84cb56a5353c3ec2cc5cf827eb (patch) | |
tree | 9f16a0c00dc244e303588df6833b311c59275a37 /arch/i386/include/kernel | |
parent | 61760f9301427ea56a62ec02af3d0d8ae4745be7 (diff) |
arch: i386: pass entry page directory to entry func
Add a third argument to i386_entry. This argument is the bootstrap page
directory. Pages can be temporarily mapped in during the initialization
of the paging system.
Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'arch/i386/include/kernel')
-rw-r--r-- | arch/i386/include/kernel/multiboot.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/i386/include/kernel/multiboot.h b/arch/i386/include/kernel/multiboot.h index 5825816..abbd8a9 100644 --- a/arch/i386/include/kernel/multiboot.h +++ b/arch/i386/include/kernel/multiboot.h @@ -99,6 +99,4 @@ struct mboot_mmap_entry { uint32_t type; } __attribute__((packed)); -void i386_entry(uint32_t mboot_magic, struct mboot_info *header); - #endif |