返回介绍

31.9.1 Examples

发布于 2020-09-09 22:56:04 字数 1208 浏览 862 评论 0 收藏 0

These objects are newly defined objects needed for supporting the full connectivity through ports where the ports are vpiInterface or vpiModport or any object inside modport or interface.

RefObjs are dummy objects and they always have a handle to the original object.

interface simple ()
    logic req, gnt;
    modport slave (input req, output gnt);
    modport master (input gnt, output req);
}

module top()
    interface simple i;
    child1 i1(i);
    child2 i2(i.master);
endmodule

/***********************************
for port of i1,
    vpiHighConn = vpiRefObj where vpiRefObjType = vpiInterface

for port of i2 ,
    vpiHighConn = vpiRefObj where vpifullType = vpiModport
****************************************/
module child1(interface simple s)
    c1 c_1(s);
    c1 c_2(s.master);
endmodule

/****************************
for port of child1,
    vpiLowConn = vpiRefObj where vpiRefObjType = vpiInterface

for that refObj,
    vpiPort is = port of child1.

vpiPortInst is = s, s.master
vpiActual is = i.

for port of c_1 :
    vpiHighConn is a vpiRefObj, where full type is vpiInterface.

for port of c_2 :
    vpiHighConn is a vpiRefObj, where full type is vpiModport.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文