Skip to content

Commit

Permalink
CVXIF VSEQ: RD equal x10 for CUS_ADD_RS3_RTYPE
Browse files Browse the repository at this point in the history
  • Loading branch information
AyoubJalali committed Dec 23, 2024
1 parent 4b9cbf9 commit 6c5da20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions verif/env/uvme/cvxif_vseq/uvme_cvxif_vseq.sv
Original file line number Diff line number Diff line change
Expand Up @@ -409,11 +409,11 @@ task uvme_cvxif_vseq_c::do_instr_result();
"CUS_ADD_RS3_RTYPE": begin
if (req_item.register.rs_valid == 3'b111) begin
resp_item.result.data = req_item.register.rs[0] + req_item.register.rs[1] + req_item.register.rs[2];
resp_item.result.rd = 5'h10;
resp_item.result.rd = 5'hA;
end
else if (req_item.register.rs_valid == 2'b11) begin
resp_item.result.data = req_item.register.rs[0] + req_item.register.rs[1];
resp_item.result.rd = 5'h10;
resp_item.result.rd = 5'hA;
end
end
"ILLEGAL": begin
Expand Down

0 comments on commit 6c5da20

Please sign in to comment.