widthmismatch.v
来自「openaccess与verilog互相转化时所用的源代码」· Verilog 代码 · 共 19 行
V
19 行
// This test verifies that the reader will catch width mismatches between // the terminals on a vector instance and a net. This test uses connect by// name.module child(input [1:0] a, output b);endmodulemodule top(); wire [7:0] x; wire y; child I1[0:1](.a(x), .b(y)); endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?