mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 13:27:29 -04:00
remove async reset for FPGA synthesis
This commit is contained in:
parent
1a29007bc7
commit
e901fb6a3a
1 changed files with 3 additions and 3 deletions
6
rtl/cache/VX_cache_data.v
vendored
6
rtl/cache/VX_cache_data.v
vendored
|
@ -79,10 +79,10 @@ module VX_cache_data
|
|||
always @(posedge clk, posedge rst) begin : update_all
|
||||
if (rst) begin
|
||||
for (ini_ind = 0; ini_ind < NUM_IND; ini_ind=ini_ind+1) begin
|
||||
data[ini_ind] <= 0;
|
||||
tag[ini_ind] <= 0;
|
||||
//data[ini_ind] <= 0;
|
||||
//tag[ini_ind] <= 0;
|
||||
valid[ini_ind] <= 0;
|
||||
dirty[ini_ind] <= 0;
|
||||
//dirty[ini_ind] <= 0;
|
||||
end
|
||||
end else begin
|
||||
if (update_dirty) dirty[addr] <= dirt_new; // WRite Port
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue