S
sdaq
Guest
can someone please explain how to use gate primitives to replace the
initial and always statements in the following clock example?
module simple_clock(clk);
output reg clk;
initial
#2 clk = 1;
always
#10 clk = ~clk;
endmodule
initial and always statements in the following clock example?
module simple_clock(clk);
output reg clk;
initial
#2 clk = 1;
always
#10 clk = ~clk;
endmodule