bootloader 0.11.13

An experimental x86_64 bootloader that works on both BIOS and UEFI systems.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use bootloader_test_runner::run_test_kernel;

#[test]
fn check_boot_info() {
    run_test_kernel(env!(
        "CARGO_BIN_FILE_TEST_KERNEL_MAP_PHYS_MEM_check_boot_info"
    ));
}

#[test]
fn access_phys_mem() {
    run_test_kernel(env!(
        "CARGO_BIN_FILE_TEST_KERNEL_MAP_PHYS_MEM_access_phys_mem"
    ));
}