ax-cpu 0.10.0

Privileged instruction and structure abstractions for various CPU architectures
Documentation
1
2
3
4
5
6
7
//! Boot and guest entries share the current CPU register layout.

pub(crate) mod boot;
#[cfg(feature = "virtualization")]
mod guest;
#[cfg(feature = "virtualization")]
pub use guest::enter_guest;