G
GilGr
Guest
Hi,
I have a module with parameter, and I'm trying to instantiate several
of it, while using the "array" syntax. I tried using defparam for
each, but synopsys DC doesn't accept it. example:
//// my module
module modmod( input wire a,
output wire b);
parameter some_param;
..
..
..
endmodule
// it's instances:
modmod my_ins[4:0](.a(a), .b(b));
// I'm passing the params like this:
defparam my_ins[0].some_param = 3;
etc.
thanks in advance, GilGr
I have a module with parameter, and I'm trying to instantiate several
of it, while using the "array" syntax. I tried using defparam for
each, but synopsys DC doesn't accept it. example:
//// my module
module modmod( input wire a,
output wire b);
parameter some_param;
..
..
..
endmodule
// it's instances:
modmod my_ins[4:0](.a(a), .b(b));
// I'm passing the params like this:
defparam my_ins[0].some_param = 3;
etc.
thanks in advance, GilGr