How to access a DUT signal from a UVM test case class?

Sometimes, in cases you are sure that reuse is irrelevant, one can use the $root.
For example:
if ($root.top.u_dut.sig)
`uvm_error (“test”, "signal is active)

Though, I recommend not to use this method, and to stick to interface passing through config_db.

Beeri

1 Like