RTL code refactoring

This commit is contained in:
Blaise Tine
2020-04-20 06:59:13 -04:00
parent 07135263f5
commit 58850a2fe8
6 changed files with 22 additions and 23 deletions

View File

@@ -56,10 +56,10 @@ module VX_lsu (
assign dcache_req_if.core_req_pc = use_pc;
// Core can't accept response
assign dcache_req_if.core_no_wb_slot = no_slot_mem;
assign dcache_rsp_if.core_no_wb_slot = no_slot_mem;
// Cache can't accept request
assign out_delay = ~dcache_rsp_if.core_req_ready;
assign out_delay = ~dcache_req_if.core_req_ready;
// Core Response
assign mem_wb_if.rd = dcache_rsp_if.core_wb_req_rd;