34. Procedural Constructs

Question.4

What is the explicit operational purpose of the initial block in the code below?

module testbench;
    reg clk;
    initial begin
        clk = 0;
        forever #5 clk = ~clk;
    end
endmodule

 

Need Help? Refer to the Quick Guide below

Select Answer