pie-boot-loader-aarch64 0.2.1

Boot kernel code with mmu.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![no_std]
#![cfg(target_arch = "aarch64")]

pub use pie_boot_if::BootInfo;

#[macro_use]
mod _macros;

mod def;
mod reg;

pub use def::*;
pub use reg::*;