summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAshelyn Rose <git@ashen.earth>2024-12-24 17:52:59 -0700
committerAshelyn Rose <git@ashen.earth>2024-12-24 17:52:59 -0700
commitec37e4edacb3cd3117dbe227c0a8dbd9ff2226f7 (patch)
tree1da382d3484301795fb0cf404704378033fa3abf /src
parentdb30172979436c082fc22b775cbe25673c5b1bc0 (diff)
Remove excessive logging HEAD main
Diffstat (limited to 'src')
-rw-r--r--src/instructions.rs1
1 files changed, 0 insertions, 1 deletions
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::<Vec<_>>();
 
         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);