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§
Sourcefn check_pc_breakpoint(&mut self, addr: u16) -> bool
fn check_pc_breakpoint(&mut self, addr: u16) -> bool
Returns true if breakpoint at given address is set and emulation should be stopped