2020-04-13 22:23:03 -04:00
|
|
|
module top;
|
2020-08-08 20:43:47 -06:00
|
|
|
wire x = 1;
|
|
|
|
|
generate
|
|
|
|
|
begin : f
|
|
|
|
|
wire x;
|
|
|
|
|
begin : a
|
|
|
|
|
wire x;
|
|
|
|
|
initial begin
|
|
|
|
|
$display("bar got %b", x);
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
assign a.x = x;
|
|
|
|
|
begin : b
|
|
|
|
|
wire x;
|
|
|
|
|
initial begin
|
|
|
|
|
$display("bar got %b", x);
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
assign b.x = ~x;
|
|
|
|
|
end
|
|
|
|
|
assign f.x = x;
|
|
|
|
|
endgenerate
|
2020-04-13 22:23:03 -04:00
|
|
|
endmodule
|