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
+11
View File
@@ -0,0 +1,11 @@
interface Foo;
function bar;
input integer x;
return x * x;
endfunction
endinterface
module top;
Foo foo();
initial $display(foo.bar(3));
endmodule