mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
conversion for function void (resolves #32)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
module top;
|
||||
function void foo;
|
||||
$display("foo called");
|
||||
endfunction
|
||||
initial foo;
|
||||
endmodule
|
||||
@@ -0,0 +1,6 @@
|
||||
module top;
|
||||
task foo;
|
||||
$display("foo called");
|
||||
endtask
|
||||
initial foo;
|
||||
endmodule
|
||||
Reference in New Issue
Block a user