support nested interfaces

This commit is contained in:
Zachary Snow
2020-04-13 22:50:41 -04:00
parent c5ef5ea9e2
commit f381476161
3 changed files with 44 additions and 4 deletions
+13
View File
@@ -0,0 +1,13 @@
module top;
wire x, f_x;
wire f_a_x, f_b_x;
assign x = 1;
assign f_x = x;
assign f_a_x = x;
assign f_b_x = ~x;
initial begin
$display("bar got %b", f_a_x);
$display("bar got %b", f_b_x);
end
endmodule