Skip to content

Commit

Permalink
fix the linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Aquaticfuller committed Dec 17, 2024
1 parent 89ea4c9 commit c269b55
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions core/cva6.sv
Original file line number Diff line number Diff line change
Expand Up @@ -1466,22 +1466,22 @@ module cva6
// the req at the next cycle
always_comb begin
amo_req_masked = amo_req;
amo_req_masked.req = amo_req.req & ~amo_resp.ack;
amo_req_masked.req = amo_req.req & ~amo_resp.ack;
end

// a spill register for amo_resp, for timing optimization
spill_register #(
.T ( amo_resp_t ),
.Bypass ( 0 )
.T (amo_resp_t),
.Bypass(0)
) i_amo_resp (
.clk_i ( clk_i ),
.rst_ni ( rst_ni ),
.valid_i ( amo_resp_precut.ack ),
.ready_o ( ),
.data_i ( amo_resp_precut ),
.valid_o ( ),
.ready_i ( 1'b1 ),
.data_o ( amo_resp )
.clk_i (clk_i),
.rst_ni (rst_ni),
.valid_i(amo_resp_precut.ack),
.ready_o(),
.data_i (amo_resp_precut),
.valid_o(),
.ready_i(1'b1),
.data_o (amo_resp)
);

end else begin : gen_cache_wb
Expand Down

0 comments on commit c269b55

Please sign in to comment.