If my clock signal toggles every 40ns but I want it to start toggling only after a specific delay, let's say 15ns, how can I do so using a Verilog testbench?
Asked
Active
Viewed 551 times
1 Answers
3
bit clock;
initial begin
clock = 0;
#15ns;
forever #40ns clock = ~clock;
end

toolic
- 57,801
- 17
- 75
- 117