remove async reset for FPGA synthesis

This commit is contained in:
codetector 2020-02-19 23:19:05 -05:00
parent 072c89c433
commit e82e29c855
No known key found for this signature in database
GPG key ID: 7D42AB4D2C7B40A4

View file

@ -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