diff options
author | iximeow <me@iximeow.net> | 2025-04-09 00:02:54 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2025-04-09 00:02:54 -0700 |
commit | 8f485c856fae8fef283f5391b49fcc0db8288ea5 (patch) | |
tree | dc18c2059b76901cfbfc380b7664b234b6ae3da3 /src/lib.rs | |
parent | 2bf4b55491d2100734089652fce2048d711ac71a (diff) |
system control register names, more cleanup
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -6518,9 +6518,6 @@ fn decode_instruction< 0b1101 => { // 1110|1101 opcode_check!(inst & 0b0010_0000_0000_0000 == 0); - // TODO: can remove probably? - let op_lo = ((inst >> 5) & 0b111) as u8; - let op_hi = ((inst >> 21) & 0b111) as u8; handler.on_dest_decoded(Operand::gpr(reg_b0(inst)))?; handler.on_source_decoded(Operand::gpr(reg_b16(inst)))?; |