Binding two parameterized modules

In reply to mseyunni:

Bind works as if you had written the code as

module my_rtl (...);
  ... // all my stuff


  my_cov #(.CFG(TB_CONFIG)) u_my_cov_inst(.*);
endmodule

Since TB_CONFIG is not defined in my_rtl, you get an error.