Posted by bramani@uvm on Jan 16, 2021
UVM module mymod (); string mystr; initial begin if (! (uvm_config_db # (string):: get (this, "*", "my_string", mystr))) `uvm_fatal ("FATAL", "Could not get value for my_string") end endmodule module mymod1 () ...
Question