📄 redef.v
字号:
// Verify that the reader can handle module redefinitions within the same// input file. The xyz module is defined twice and has different contents in // each definition. The second definintion should win.module leaf(input in, output out);endmodulemodule xyz (input a, output b); leaf I1(.in(a), .out(b));endmodule// This module should win.module xyz (input a, output b); wire c; leaf I1(.in(a), .out(c)); leaf I2(.in(c), .out(b));endmodulemodule top (); xyz u0 (x, y);endmodule
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -