machina-core 0.1.2

Core IR definitions, CPU traits, and address types for the Machina RISC-V emulator
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod address;
pub mod cpu;
pub mod machine;
pub mod monitor;
pub mod wfi;

pub use address::{GPA, GVA, HVA};
pub use cpu::GuestCpu;
pub use machine::{Machine, MachineOpts};
pub use wfi::WfiWaker;