diff --git a/simu/src/cpu.rs b/simu/src/cpu.rs index 926f781..f9ca51b 100644 --- a/simu/src/cpu.rs +++ b/simu/src/cpu.rs @@ -388,7 +388,6 @@ impl Computer { while let Some((_, line)) = lines.next() { if let Some([addr, s]) = line.split_ascii_whitespace().collect::>().as_array() { if let Ok(i) = u32::from_str_radix(addr, 16) { - println!("adding label {s} at addr {i}"); new.book.insert(i, s.to_string()); } } @@ -663,7 +662,6 @@ impl Computer { } _ => { /* This is a troubling case but ... well it's ok */ } } - println!("returning from interupt"); let ret = self.ram[self.sp]; self.pc = (ret & 0x0FFF_FFFF) as usize; self.sp += 1 as usize;