From 7a519924cb15f16a683782391e70a6e34700612a Mon Sep 17 00:00:00 2001 From: taitep Date: Tue, 14 Oct 2025 18:21:28 +0200 Subject: Move funct3 values to rvi.rs instead of being in opcodes.rs --- src/instructions/opcodes.rs | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/instructions/opcodes.rs') diff --git a/src/instructions/opcodes.rs b/src/instructions/opcodes.rs index 04059a2..7115820 100644 --- a/src/instructions/opcodes.rs +++ b/src/instructions/opcodes.rs @@ -1,10 +1,5 @@ -//! Includes opcodes, funct3 values, and match/mask values. //! Opcodes (unless compressed) have the last 2 bits stripped off as they are always 1s for non-compressed instructions. pub(super) const OP_IMM: u8 = 0b00100; -pub(super) const FUNCT3_ADDI: u8 = 0b000; - pub(super) const STORE: u8 = 0b01000; - -pub(super) const FUNCT3_SD: u8 = 0b011; -- cgit v1.2.3