snooping response handling fix

This commit is contained in:
Blaise Tine
2020-05-14 23:06:15 -04:00
parent d623ef4029
commit 57a037b2f4
3 changed files with 6 additions and 6 deletions

View File

@@ -328,13 +328,13 @@ module Vortex_Socket (
);
end
always_comb begin
/*always_comb begin
if (1'($time & 1) && (dram_req_read || dram_req_write) && dram_req_ready) begin
$display("*** %t: DRAM req: w=%b addr=%0h, tag=%0h, data=%0h", $time, dram_req_write, {dram_req_addr, `CLOG2(`GLOBAL_BLOCK_SIZE)'(0)}, dram_req_tag, dram_req_data);
end
if (1'($time & 1) && dram_rsp_valid && dram_rsp_ready) begin
$display("*** %t: DRAM rsp: tag=%0h, data=%0h", $time, dram_rsp_tag, dram_rsp_data);
end
end
end*/
endmodule