- virtual interface只能用在driver和monitor中
- build_phase中必须调用super.build()
- build_phase中需显示get config,不要依赖于自动获取
- 不建议使用extract(), kill(),timeout()等class,防止弃用
- hierarchy引用,建议不超过一层
- 只允许在driver的run method中出现延时#delay
- 建议只使用uvm_report机制,不要使用$display等
- assertion report需要通过uvm_report机制report出来,便于统计
assert (exp_behaviour) begin `uvm_info(...) end else begin `uvm_error(...) end
9.List item
10.持续更新中 ……