From ec37e4edacb3cd3117dbe227c0a8dbd9ff2226f7 Mon Sep 17 00:00:00 2001 From: Ashelyn Rose Date: Tue, 24 Dec 2024 17:52:59 -0700 Subject: Remove excessive logging --- src/instructions.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/instructions.rs b/src/instructions.rs index 55bc5b9..37ffe92 100644 --- a/src/instructions.rs +++ b/src/instructions.rs @@ -53,7 +53,6 @@ impl Instruction { ).collect::>(); let opcode_num = u32::from_be_bytes(instruction_bytes.clone().try_into().unwrap()) & !mask; - println!("instruction length: {instruction_length}, number: 0x{opcode_num:x}, bytes: {instruction_bytes:?}"); let opcode = OpCode::get_from_code(opcode_num); if let None = opcode { return Err(opcode_num); -- cgit 1.4.1