While Loop
while loop - executes if expression is true
Counts from 0 to 100
Exits loop at count 101
initial
begin
count = 0;
while (count < 101)
begin
$display (¡°Count = %d¡±, count);
count = count + 1;
end
end
ÀÌÀü ½½¶óÀ̵å
´ÙÀ½ ½½¶óÀ̵å
ù ½½¶óÀ̵å·Î À̵¿
±×·¡ÇÈ ¹öÀü º¸±â