[][src]Struct riscv_emu_rust::Emulator

pub struct Emulator { /* fields omitted */ }

Methods

impl Emulator[src]

pub fn new(terminal: Box<dyn Terminal>) -> Self[src]

pub fn run(&mut self)[src]

pub fn run_program(&mut self)[src]

pub fn run_test(&mut self)[src]

pub fn tick(&mut self)[src]

pub fn setup_from_elf(&mut self, data: Vec<u8>)[src]

pub fn setup_filesystem(&mut self, data: Vec<u8>)[src]

pub fn setup_dtb(&mut self, data: Vec<u8>)[src]

pub fn update_xlen(&mut self, xlen: Xlen)[src]

pub fn get_mut_terminal(&mut self) -> &mut Box<dyn Terminal>[src]

Auto Trait Implementations

impl !RefUnwindSafe for Emulator

impl !Send for Emulator

impl !Sync for Emulator

impl Unpin for Emulator

impl !UnwindSafe for Emulator

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.