Skip to content

Commit

Permalink
[hardware] Accept the instruction issue only if it's valid for Ara
Browse files Browse the repository at this point in the history
  • Loading branch information
mp-17 committed Sep 17, 2024
1 parent ffa600d commit ca0cdc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hardware/src/ara_pre_decoder.sv
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ module ara_pre_decoder import ara_pkg::*; import rvv_pkg::*; #(

logic inv_accept;

assign cvxif_issue_resp_o.accept = ~insn_error;
assign cvxif_issue_resp_o.accept = is_decoding & ~insn_error;
assign cvxif_issue_resp_o.writeback = (is_rd || is_fd);
assign cvxif_issue_resp_o.register_read[0] = (is_rs1 || is_fs1);
assign cvxif_issue_resp_o.register_read[1] = (is_rs2 || is_fs2);
Expand Down

0 comments on commit ca0cdc4

Please sign in to comment.