blob: d1ca1a0f06d0b0b0f3b31e8c54b79673ac8a3428 (
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(long mboot_magic, const volatile void *mboot_data_ptr, volatile struct boot_info *shim_info);
|