ax-cpu 0.10.0

Privileged instruction and structure abstractions for various CPU architectures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! AMD SVM hardware images and exit encodings.

mod exit;
mod vmcb;
pub use exit::{SvmExitCode, SvmIntercept};
pub use vmcb::*;

mod memory;
pub use memory::Vmcb;

mod context;
pub use context::SvmEntryContext;

mod instructions;
pub use instructions::{clear_gif, set_gif};

mod controls;
pub use controls::{SvmControlMemory, SvmControls};