When trying to get the Clock waveform to display in EDA Playground I get the error
Execution interrupted or reached maximum runtime.
How do I get the wave form to show?
module test;
reg clk;
initial
begin
$dumpfile("dump.vcd");
$dumpvars(1);
clk=0;
end
always
begin
#1 clk<=~clk;
end
endmodule