Hierarchical names: Verilog RTL synthesis

Jayaram Bhasker (jbhasker@Cadence.COM)
Fri, 26 Feb 1999 09:24:16 -0500 (EST)

Here is another issue on which we need your feedback.

Should hierarchical names be supported?

Here is an example.

module TOP;

COMP c (a, b, d);

always @(a)
c.m = d; <<-- c.m is a hierarchical name.
endmodule

module BOT(q);
input [0:2] q;
wire [0:2] m;

assign m = q;
endmodule

Please send in your feedback (vlog-synth@eda.org) by Mar 6.

- bhasker