mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 21:39:10 -04:00
minor update
This commit is contained in:
parent
f5014e8975
commit
81b17169ab
1 changed files with 3 additions and 1 deletions
4
hw/rtl/cache/VX_cache_data.sv
vendored
4
hw/rtl/cache/VX_cache_data.sv
vendored
|
@ -89,7 +89,9 @@ module VX_cache_data #(
|
|||
|
||||
always @(posedge clk) begin
|
||||
if (reset) begin
|
||||
dirty_blocks_r <= '0;
|
||||
for (integer i = 0; i < `CS_LINES_PER_BANK * NUM_WAYS; ++i) begin
|
||||
dirty_blocks_r[i] <= 0;
|
||||
end
|
||||
end else begin
|
||||
if (fill) begin
|
||||
dirty_blocks_r[way_addr] <= 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue