function_void.v 97 Bytes
Newer Older
1 2 3 4 5 6
module top;
    task foo;
        $display("foo called");
    endtask
    initial foo;
endmodule