Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 227 Bytes

File metadata and controls

12 lines (10 loc) · 227 Bytes
  • how to print processor state for step debug?
struct State<WordSize> {
    program_counter: usize,
    regs: &[(&'static str, WordSize)],
    flags: &[(&'static str, bool)],
    data: &[u8],
}
  • regression tests