Files

7 lines
97 B
Verilog
Raw Permalink Normal View History

2019-09-11 18:20:44 +02:00
module top;
task foo;
$display("foo called");
endtask
initial foo;
endmodule