aarch64 0.0.14

Rust library to use aarch64 specific functionality and registers
Documentation
1
2
3
4
5
6
7
8
9
10
pub use memory_addresses::arch::aarch64::{PhysAddr, VirtAddr};

/// Log2 of base page size (12 bits).
pub const BASE_PAGE_SHIFT: usize = 12;

/// Size of a base page (4 KiB)
pub const BASE_PAGE_SIZE: usize = 4096;

/// Size of a large page (2 MiB)
pub const LARGE_PAGE_SIZE: usize = 1024 * 1024 * 2;