Guest
Hello guys,
I am confuse on how events will be sceduled in this two implemention of
clock
1.
module DUT (input clk);
initial begin
clk = 0;
#10 clk = ~clk;
end
2.
module DUT (input clk)
inital begin
clk <=0;
#10 clk <= ~clk;
end
I am confuse on how events will be sceduled in this two implemention of
clock
1.
module DUT (input clk);
initial begin
clk = 0;
#10 clk = ~clk;
end
2.
module DUT (input clk)
inital begin
clk <=0;
#10 clk <= ~clk;
end