Hi All,
By default the Verilog/SystemVerilog instances are declared without parameters.
For example, there is a following module:
`module M #(parameter P) (input A, output B)
So, the default instance, which is triggered by the verilog_module_inst command, will be like following:
M i_M (.A,(A).B(B));
But, how to get the instance of the module with its parameters like following?
M i_M #(.P(P)) (.A(A), .B(B));
Thank you!
`
Thank you!