Skip to content

Commit

Permalink
Added IALU function code-3 for immediate 64-bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed May 20, 2024
1 parent 1fe4d38 commit 5aa2a05
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/rishka_instructions.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ enum rishka_immediate_fc3 {
enum rishka_ialu_fc3 {
RISHKA_FC3_SLLIW, /**< Shift left logical immediate word. */
RISHKA_FC3_SRLIW, /**< Shift right logical immediate word. */
RISHKA_FC3_SRAIW /**< Shift right arithmetic immediate word. */
RISHKA_FC3_SRAIW, /**< Shift right arithmetic immediate word. */
RISHKA_FC3_SLLI64, /**< Shift left logical immediate for 64-bit integers. */
RISHKA_FC3_SRLI64, /**< Shift right logical immediate for 64-bit integers. */
RISHKA_FC3_SRAI64 /**< Shift right arithmetic immediate for 64-bit integers. */
};

/**
Expand Down

0 comments on commit 5aa2a05

Please sign in to comment.