spartanthewarrior
Full Member level 2
Hi All,
Can anybody tell How many flops will be there in this logic.
always @ (posedge clk)
b = a;
c = b;
d = c;
endalways
always @ (posedge clk)
b <= a;
c <= b;
d <= c;
endalways
Can anybody tell How many flops will be there in this logic.
always @ (posedge clk)
b = a;
c = b;
d = c;
endalways
always @ (posedge clk)
b <= a;
c <= b;
d <= c;
endalways