Skip to content

Commit

Permalink
fix data parity invalidation
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog committed Jul 31, 2024
1 parent 4ce990a commit e946467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snitch_icache_lookup_serial.sv
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ module snitch_icache_lookup_serial import snitch_icache_pkg::*; #(

assign data_parity_inv_d.parity_error = |data_parity_error;
assign data_parity_inv_d.addr = data_req_q.addr;
assign data_parity_inv_d.cset = data_req_q.id;
assign data_parity_inv_d.cset = data_req_q.cset;
end else begin : gen_no_data_parity
assign data_parity_inv_d = '0;
end
Expand Down

0 comments on commit e946467

Please sign in to comment.