- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 SystemVerilog 的新手。
我正在阅读以下教程:
https://www.doulos.com/knowhow/sysverilog/tutorial/interfaces/
我不确定在 SystemVerilog 界面中 modports 的优势和动机是什么?
最佳答案
Modports 用于指定 相对于特定模块/组件的信号方向 .
他们也习惯于限制访问 来自某些模块/类的某些信号。
通常 testbench modport 包含一堆激励驱动信号作为输出,而相同的信号作为 RTL 的输入。还有一些输出到 RTL 的响应信号被作为 modport 的输入。
考虑下面的例子:
interface my_interface(input logic clk, reset);
logic a;
logic b;
logic c;
logic sum;
logic carry;
modport tb (input sum,carry, output a,b,c,reset);
modport dut (output sum,carry, input a,b,c,reset);
endinterface
a
,
b
和
c
和
reset
.但是testbench驱动
sum
会出错和
carry
信号。
关于system-verilog - SystemVerilog 界面中 modports 的优势和动机是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39189758/
根据我之前的问题 (Groups inside structs),在创建 typedef 结构后,我尝试从 5 个不同的 channel 信号声明(结构)形成一个接口(interface)。 结构的形
我是 SystemVerilog 的新手。 我正在阅读以下教程: https://www.doulos.com/knowhow/sysverilog/tutorial/interfaces/ 我不确定
这里是一些接口(interface)代码的片段,它有一些参数化的大小。第四个参数 HAS_BURST 是我试验过的,但它只会导致编译错误。 实际上,我正在寻找一种方法来根据参数从接口(interfac
我有两个带有 modports 的接口(interface)和另一个结合了这两个接口(interface)的接口(interface),如下所示: interface my_interface1 /
我是一名优秀的程序员,十分优秀!