Hi all.,
I have one query in DUT instantiation in SV testbench.
* Below is an example of position based DUT instantion
RTL_DUT (a,b,c);
* For instantion by name.,
RTL_DUT (.a(a), .b(b), .c(c));
* But what happens when instantiated as below.,
RTL_DUT ( .* );
What does only ".*" means in above typr of instantiation, please let me know.