Function kernel::kernel_main
source · #[link_section = ".text"]
#[no_mangle]
pub extern "C" fn kernel_main(
multiboot_info: &'static MultiBoot2Info
) -> !
Expand description
multiboot_info
is essentially 'static
, since it won’t ever be removed from the memory
since we don’t exit main
at all.