diff options
author | Freya Murphy <freya@freyacat.org> | 2024-01-29 13:22:50 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-01-29 13:22:50 -0500 |
commit | e71a141533c742d05c0612d3a87ffb3810a4b5de (patch) | |
tree | 06f8b5f8d33b287e8443caa65dea4abb64a5d3c4 /src/arch/amd64/mboot.h | |
parent | changes (diff) | |
download | corn-e71a141533c742d05c0612d3a87ffb3810a4b5de.tar.gz corn-e71a141533c742d05c0612d3a87ffb3810a4b5de.tar.bz2 corn-e71a141533c742d05c0612d3a87ffb3810a4b5de.zip |
memory works
Diffstat (limited to 'src/arch/amd64/mboot.h')
-rw-r--r-- | src/arch/amd64/mboot.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/amd64/mboot.h b/src/arch/amd64/mboot.h index 2d8c53c..6e407d5 100644 --- a/src/arch/amd64/mboot.h +++ b/src/arch/amd64/mboot.h @@ -25,14 +25,14 @@ enum mboot_tag_type { struct mboot_info { uint32_t total_size; uint32_t reserved; - struct mboot_tag tags[21]; + struct mboot_tag tags[22]; }; /** * Loads the multi boot information * @param mboot_info - the pointer passed from multiboot2 */ -struct mboot_info mboot_load_info(void *mboot_info); +struct mboot_info mboot_load_info(const void *mboot_info); /** * Gets a tag from multiboot |