mirror of
https://git.stationery.faith/corn/corn.git
synced 2025-04-11 12:57:25 +00:00
11 lines
325 B
C
11 lines
325 B
C
#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);
|