1 2 3 4 5 6 7 8 9 10 11 12 13
//! CoreVM's guest API. //! //! Functions exposed to the guest programs running in an inner VM. #![cfg_attr(any(target_arch = "riscv32", target_arch = "riscv64"), no_std)] #![doc = include_str!("../README.md")] pub mod c; mod formatted_output; mod panic; mod rust; pub use self::{formatted_output::*, rust::*};