Skip to content
Snippets Groups Projects
Commit 13c6ee75 authored by Nils Wistoff's avatar Nils Wistoff Committed by Florian Zaruba
Browse files

cache_ctrl: report data only for valid reads

parent 493add1f
Branches
No related tags found
No related merge requests found
......@@ -209,7 +209,7 @@ module cache_ctrl import ariane_pkg::*; import std_cache_pkg::*; #(
// report data for a read
if (!mem_req_q.we) begin
req_port_o.data_rvalid = 1'b1;
req_port_o.data_rvalid = ~mem_req_q.killed;
// else this was a store so we need an extra step to handle it
end else begin
state_d = STORE_REQ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment