|  | 
 
| 
class tlm_transport_channel #(type REQ=int, type RSP=REQ)  extends tlm_req_rsp_channel #(REQ, RSP);
×
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册  
 ovm_transport_imp #(REQ, RSP, this_type) transport_export;
 
 task transport (REQ request, output RSP response );
 ......
 endtask
 
 function bit nb_transport (REQ req, output RSP rsp );
 ......
 endtask
 
 endclass
 
 有单独的transport和nb_transport定义。
 
 但是对于transport_export,这算什么意思呢,是blocking的还是non-blocking的呢?难道是OVM自己会识别该用blocking的还是non-blocking的?
 | 
 |