10 lines
107 B
Coq
10 lines
107 B
Coq
|
|
module test();
|
||
|
|
|
||
|
|
task t(input integer a, integer b);
|
||
|
|
$display(a,,b);
|
||
|
|
endtask
|
||
|
|
|
||
|
|
initial t(0, 1);
|
||
|
|
|
||
|
|
endmodule
|