DebugInterface

Trait DebugInterface 

Source
pub trait DebugInterface {
    // Required method
    fn check_pc_breakpoint(&mut self, addr: u16) -> bool;
}
Expand description

Allows to externd RustZX emulator with custom debug logic

Required Methods§

Source

fn check_pc_breakpoint(&mut self, addr: u16) -> bool

Returns true if breakpoint at given address is set and emulation should be stopped

Implementors§