Uvm_top/uvm_test_top

Hi All,

Could any one please explain where are the uvm_top and uvm_test_top in uvm tb hierarchy?

Thanks,
Rahul Kumar

Hi Rahul,
Please check the below link.
diff between uvm_top and uvm_test_top

-Abhijeet

In reply to abhijeet Sahoo:

Hi Abhijeet,

Thanks for reply,

I could not understand(hierarchy) the difference b/w uvm_top and uvm_test_top, If i want to access a variable from test to inside TB_top using hierarchical path, what would be the hierarchy please have a look at below code?

module tb_top;

initial begin

 #10ns;
 uvm_top.uvm_test_top.count=10; <-  getting error

end
.
.
.
endmodule

class base_test extends uvm_test;

int count;

endclass

Thanks,
Rahul