support for methods (no conversion) and interface TFs

This commit is contained in:
Zachary Snow
2019-10-19 16:22:46 -04:00
parent 39f0e9b40d
commit 3597f4a6be
15 changed files with 105 additions and 66 deletions
+7
View File
@@ -0,0 +1,7 @@
module top;
function bar;
input integer x;
bar = x * x;
endfunction
initial $display(bar(3));
endmodule