Y
ybhanu020@gmail.com
Guest
Is the below code is properly coded during reset during synthesis how it will be synthesis?
always@(posedge clk,negedge reset)begin
if(!reset)begin
conv_mat_out_flag<=0;
for(x=0;x<11;x=x+1)begin
H_real[x] <= 0;
H_imag[x] <= 0;
end
end
always@(posedge clk,negedge reset)begin
if(!reset)begin
conv_mat_out_flag<=0;
for(x=0;x<11;x=x+1)begin
H_real[x] <= 0;
H_imag[x] <= 0;
end
end