模块端口列表中的系统verilog接口
我希望将系统 verilog 接口放在具有不同 modport 的单独文件中。 该接口必须由其他文件中的 sv 模块使用。 就像包可以导入到模块文件中一样,对于接口如何做到这一点?
谢谢
I want to have the system verilog interface in a seperate file with different modports.
The interface has to be used by sv modules in other files.
Just like packages can be imported into module files, how can this be done for interfaces?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要像处理包那样进行任何导入。
只需在其他 sv 模块的同一库中使用 modports 编译接口即可。
编辑以添加文件示例:
iface.sv
ab.sv
You don't need any import like you do with packages.
Just compile interface with modports in the same library of other sv modules.
Edit to add file examples:
iface.sv
ab.sv