10 lines
105 B
Coq
10 lines
105 B
Coq
|
|
module test;
|
||
|
|
event e;
|
||
|
|
initial begin
|
||
|
|
repeat (5) begin
|
||
|
|
#10;
|
||
|
|
->e;
|
||
|
|
end
|
||
|
|
end
|
||
|
|
endmodule
|