diff options
author | Ashelyn Rose <git@ashen.earth> | 2024-12-24 17:52:59 -0700 |
---|---|---|
committer | Ashelyn Rose <git@ashen.earth> | 2024-12-24 17:52:59 -0700 |
commit | ec37e4edacb3cd3117dbe227c0a8dbd9ff2226f7 (patch) | |
tree | 1da382d3484301795fb0cf404704378033fa3abf /src/instructions.rs | |
parent | db30172979436c082fc22b775cbe25673c5b1bc0 (diff) |
Diffstat (limited to 'src/instructions.rs')
-rw-r--r-- | src/instructions.rs | 1 |
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); |