mango-boot 0.2.1

Bootloader for the mango operationg system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Defines the entry point for the kernel. In x86_64, it expect a function that takes `(boot_info: &'static bootloader::BootInfo)` as arguments.
/// Example of use:
/// ```
/// mango_boot::entry_point(start_kernel);
///
/// fn start_kernel(boot_info: &'static bootloader::BootInfo)
/// {
///   ...
/// }
/// ```
#[macro_export]
macro_rules! entry_point {
  ($path:path) => {
    bootloader::entry_point!($path);
  };
}