mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-01 10:06:19 +02:00
support nested interfaces
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user