iverilog/ivtest/vpi/event2.v

10 lines
105 B
Verilog

module test;
event e;
initial begin
repeat (5) begin
#10;
->e;
end
end
endmodule