uvm读书笔记

第三章 UVM 基础

3.1 uvm_component 与 uvm_object

uvm_conponent 实际上继承自 uvm_object, 所以它比 uvm_object多了两个特性:
(1) uvm_component 在 new 的时候通过指定 parent 形成 uvm 树。
(2) uvm_component 有 phase 自动执行的特点。
原文地址:https://www.cnblogs.com/yanli0302/p/13210413.html