From d31116d584e57279805f054e0cdeb5209cc43bc8 Mon Sep 17 00:00:00 2001 From: felsabbagh3 Date: Sun, 29 Mar 2020 17:59:10 -0700 Subject: [PATCH] Uses use_wb_valid instead of wb_req to include snoops --- rtl/VX_cache/VX_cache_dram_req_arb.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/VX_cache/VX_cache_dram_req_arb.v b/rtl/VX_cache/VX_cache_dram_req_arb.v index 2fbd5389..52b8eb03 100644 --- a/rtl/VX_cache/VX_cache_dram_req_arb.v +++ b/rtl/VX_cache/VX_cache_dram_req_arb.v @@ -103,7 +103,7 @@ module VX_cache_dram_req_arb ); - assign per_bank_dram_wb_queue_pop = dram_req_delay ? 0 : per_bank_dram_wb_req & ((1 << dwb_bank)); + assign per_bank_dram_wb_queue_pop = dram_req_delay ? 0 : use_wb_valid & ((1 << dwb_bank)); assign dram_req = dwb_valid || dfqq_req;