模块端口列表中的系统verilog接口

发布于 2025-01-09 23:03:39 字数 107 浏览 0 评论 0原文

我希望将系统 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉梦枕江山 2025-01-16 23:03:39

您不需要像处理包那样进行任何导入。

只需在其他 sv 模块的同一库中使用 modports 编译接口即可。


编辑以添加文件示例:

iface.sv

interface iface (input logic clk);
  logic s;
  modport slave (
    input s
  );
endinterface

ab.sv

module ab( iface.slave ins0 ); 
endmodule

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

interface iface (input logic clk);
  logic s;
  modport slave (
    input s
  );
endinterface

ab.sv

module ab( iface.slave ins0 ); 
endmodule
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文