pie-boot-loader-aarch64 0.1.26

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 reg;
mod def;

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