Verilog Testbench Clock
问题 I have tried this multiple ways, I am a bit desperate now. I have tried to make this clock in my testbench the problem is in simulation it doesn't work or my simulation seems to freeze. I know it has to be the clock. initial begin forever begin clk = 0; #10 clk = ~clk; end end initial begin reset = 0; #15 L = 0; R = 0; H = 0; #20 L = 0; R = 0; H = 1; #25 L = 0; R = 1; H = 0; #30 L = 0; R = 1; H = 1; #35 L = 1; R = 0; H = 0; #45 L = 1; R = 0; H = 1; #50 L = 1; R = 1; H = 0; #55 L = 1; R = 1; H