Skip to content

Commit

Permalink
Renamed reset_n to rst_b
Browse files Browse the repository at this point in the history
  • Loading branch information
Mojtaba Bisheh Niasar committed Jan 15, 2025
1 parent 34a92d4 commit dc68478
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mldsa_top/coverage/mldsa_top_cov_if.sv
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ interface mldsa_top_cov_if
assign valid = mldsa_top.mldsa_ctrl_inst.mldsa_valid_reg;

always_ff @(posedge clk) begin
if (!reset_n) begin
if (!rst_b) begin
mldsa_sw_cmd <= '0;
end
else if (mldsa_top.mldsa_reg_inst.decoded_reg_strb.MLDSA_CTRL && mldsa_top.mldsa_reg_inst.decoded_req_is_wr) begin // SW write
Expand Down Expand Up @@ -80,7 +80,7 @@ interface mldsa_top_cov_if
assign invalid_hint = mldsa_top.mldsa_ctrl_inst.sigdecode_h_invalid_i;

covergroup mldsa_top_cov_grp @(posedge clk);
reset_cp: coverpoint reset_n;
reset_cp: coverpoint rst_b;
cptra_pwrgood_cp: coverpoint cptra_pwrgood;

mldsa_cmd_cp: coverpoint mldsa_cmd;
Expand Down

0 comments on commit dc68478

Please sign in to comment.