diff options
author | Freya Murphy <freya@freyacat.org> | 2024-02-01 12:48:55 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-02-01 12:49:44 -0500 |
commit | 192a4ccd6bbc2239f047f782a05e888990011e51 (patch) | |
tree | 2b3d8a194d3dd33a5d344b4ec6376dbdfdb3eb0c /src/arch/amd64/mboot.h | |
parent | undo bad decisions (diff) | |
download | corn-192a4ccd6bbc2239f047f782a05e888990011e51.tar.gz corn-192a4ccd6bbc2239f047f782a05e888990011e51.tar.bz2 corn-192a4ccd6bbc2239f047f782a05e888990011e51.zip |
acpi, fix mboot memory map, fix kalloc, fix virtalloc node allocator, add kprintf, other changes
Diffstat (limited to 'src/arch/amd64/mboot.h')
-rw-r--r-- | src/arch/amd64/mboot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/amd64/mboot.h b/src/arch/amd64/mboot.h index 90ed75c..b9c647b 100644 --- a/src/arch/amd64/mboot.h +++ b/src/arch/amd64/mboot.h @@ -8,4 +8,4 @@ * @param mboot_info - the pointer passed from multiboot2 * @param shim_info - the info to be collected by shim */ -void mboot_load_info(const void *mboot_info, struct boot_info *shim_info); +void mboot_load_info(long mboot_magic, const void *mboot_info, struct boot_info *shim_info); |