Files

7 lines
110 B
Systemverilog
Raw Permalink Normal View History

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