Initial Block Example
module system;
reg a, b, c, d;
// single statement
initial
a = 1¡¯b0;
/* multiple statements:
needs to be grouped */
initial
begin
b = 1¡¯b1;
#5 c = 1¡¯b0;
#10 d = 1¡¯b0;
end
initial
#20 $finish;
endmodule
ÀÌÀü ½½¶óÀ̵å
´ÙÀ½ ½½¶óÀ̵å
ù ½½¶óÀ̵å·Î À̵¿
±×·¡ÇÈ ¹öÀü º¸±â