blob: 90ed75c7ccc056b28fe81a035ea5ad5104a7ec1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <shim.h>
#include <memory.h>
/**
* Loads the multi boot information
* @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);
|