pub trait Transport {
// Required methods
fn read_word(&mut self) -> u32;
fn write_word(&mut self, word: u32);
}Expand description
Word-based transport used by the guest to communicate with the host.
Required Methods§
Implementors§
impl Transport for CsrTransport
Available on non-RISC-V RV32 only.