I don't understand why repeat(value) ?? We have a for loop for repeat the loop in specified times! and while also if we give r8 expression
@ComponentByte3 жыл бұрын
repeat is used in testbench to verify the functionality of the design.its a simulation level construct. Repeat is a kind of loop.
@digambarbhole9467 Жыл бұрын
sir can you please make video on parallel processing for low power and high speed ??
@ComponentByte Жыл бұрын
I will try
@raaghaviravisankar18532 жыл бұрын
In the last code if we give a=a+1; then doesn't value always remain 1. Since the value is incremented and brought to 0 again
@ComponentByte2 жыл бұрын
repeat gives continuous loop. So a=0 for 20 cycle a=1 for 1 cycle then repeat above steps again. a= 0 for 20 cycle a=1 for 1 cycle loop never stops once a=a+1