cache area optimization by disabling BRAM read-during-write bypassing for tag/data stores
This commit is contained in:
7
hw/rtl/cache/VX_data_access.v
vendored
7
hw/rtl/cache/VX_data_access.v
vendored
@@ -63,9 +63,10 @@ module VX_data_access #(
|
||||
end
|
||||
|
||||
VX_sp_ram #(
|
||||
.DATAW (CACHE_LINE_SIZE * 8),
|
||||
.SIZE (`LINES_PER_BANK),
|
||||
.BYTEENW (BYTEENW)
|
||||
.DATAW (CACHE_LINE_SIZE * 8),
|
||||
.SIZE (`LINES_PER_BANK),
|
||||
.BYTEENW (BYTEENW),
|
||||
.NO_RWCHECK (1)
|
||||
) data_store (
|
||||
.clk (clk),
|
||||
.addr (line_addr),
|
||||
|
||||
Reference in New Issue
Block a user