Discussion:
Single bit wires instead of [0:0] busses?
(too old to reply)
stefimkert
2006-07-24 08:07:20 UTC
Permalink
How can I prevent the getting single bit busses as [0:0] in my verilog
netlist? I want just "wires" (std_logic's instead of
std_logic_vectors):

module lpesram(clk, d, q);
input clk;
input [0:0] d;
output [0:0] q;
wire [0:0] d;
wire [0:0] q;

...
endmodule


PS: I'm using DC 2005.09
Alvin Andries
2006-07-26 17:27:20 UTC
Permalink
Post by stefimkert
How can I prevent the getting single bit busses as [0:0] in my verilog
netlist? I want just "wires" (std_logic's instead of
module lpesram(clk, d, q);
input clk;
input [0:0] d;
output [0:0] q;
wire [0:0] d;
wire [0:0] q;
...
endmodule
PS: I'm using DC 2005.09
What's in the source code? std_logic_vector(0 [down]to 0) would result into
the [0:0] that you see.

Regards,
Alvin.

Loading...