allow packages to reference their own items explicitly

This commit is contained in:
Zachary Snow
2021-04-13 14:44:42 -04:00
parent c0b8ba17de
commit eeeade3e19
9 changed files with 71 additions and 6 deletions
@@ -0,0 +1,5 @@
module top;
localparam Foo = 1;
localparam Bar = 2;
initial $display(Foo + Bar);
endmodule