Skip to content

Commit

Permalink
change cv_slet,cv_sletu instr asm to cv_sle,cv_sleu to align with cv3…
Browse files Browse the repository at this point in the history
…2e40p user manual v1.4.0

Signed-off-by: Vaibhav Jain <[email protected]>
  • Loading branch information
Vaibhav Jain authored and Vaibhav Jain committed Sep 12, 2023
1 parent 4c441e8 commit 8ce22f7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions cv32e40p/env/corev-dv/custom/isa/custom/riscv_custom_instr.sv
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ class cv32e40p_instr extends riscv_instr;
CV_EXTRACT, CV_EXTRACTU, CV_INSERT, CV_BCLR,
CV_BSET, CV_BITREV : get_opcode = 7'b1011011;
// General ALU
CV_ABS, CV_SLET, CV_SLETU, CV_MIN, CV_MINU,
CV_ABS, CV_SLE, CV_SLEU, CV_MIN, CV_MINU,
CV_MAX, CV_MAXU, CV_EXTHS, CV_EXTHZ, CV_EXTBS,
CV_EXTBZ, CV_CLIP, CV_CLIPU, CV_CLIPR, CV_CLIPUR,
CV_ADDNR, CV_ADDUNR, CV_ADDRNR, CV_ADDURNR,
Expand Down Expand Up @@ -581,7 +581,7 @@ class cv32e40p_instr extends riscv_instr;
CV_EXTRACT, CV_EXTRACTU, CV_INSERT : get_func3 = 3'b000;
CV_BCLR, CV_BSET, CV_BITREV : get_func3 = 3'b001;
// General ALU
CV_ABS, CV_SLET, CV_SLETU, CV_MIN, CV_MINU,
CV_ABS, CV_SLE, CV_SLEU, CV_MIN, CV_MINU,
CV_MAX, CV_MAXU, CV_EXTHS, CV_EXTHZ, CV_EXTBS,
CV_EXTBZ, CV_CLIP, CV_CLIPU, CV_CLIPR, CV_CLIPUR,
CV_ADDNR, CV_ADDUNR, CV_ADDRNR, CV_ADDURNR,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
CV_CLB,
CV_CNT,
CV_ABS,
CV_SLET,
CV_SLETU,
CV_SLE,
CV_SLEU,
CV_MIN,
CV_MINU,
CV_MAX,
Expand Down
4 changes: 2 additions & 2 deletions cv32e40p/env/corev-dv/custom/isa/custom/rv32x_instr.sv
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@

// ALU
`DEFINE_CV32E40P_INSTR(CV_ABS , R_FORMAT , ALU , RV32X)
`DEFINE_CV32E40P_INSTR(CV_SLET , R_FORMAT , ALU , RV32X)
`DEFINE_CV32E40P_INSTR(CV_SLETU , R_FORMAT , ALU , RV32X)
`DEFINE_CV32E40P_INSTR(CV_SLE , R_FORMAT , ALU , RV32X)
`DEFINE_CV32E40P_INSTR(CV_SLEU , R_FORMAT , ALU , RV32X)
`DEFINE_CV32E40P_INSTR(CV_MIN , R_FORMAT , ALU , RV32X)
`DEFINE_CV32E40P_INSTR(CV_MINU , R_FORMAT , ALU , RV32X)
`DEFINE_CV32E40P_INSTR(CV_MAX , R_FORMAT , ALU , RV32X)
Expand Down

0 comments on commit 8ce22f7

Please sign in to comment.