This commit is contained in:
Alex Janka 2023-01-27 11:12:38 +11:00
parent 17f037fb27
commit f073cd5722

View file

@ -305,6 +305,8 @@ fn main() {
let mut instructions_seen = vec![]; let mut instructions_seen = vec![];
let mut last_state = cpu.state.clone(); let mut last_state = cpu.state.clone();
let mut next_state = last_state; let mut next_state = last_state;
verbose_println!("\n\n Begin execution...\n");
match args.step_by { match args.step_by {
Some(step_size) => loop { Some(step_size) => loop {
for _ in 0..step_size { for _ in 0..step_size {