📄 gaps.v
字号:
// Test support for gaps in both the port list declaration and in the// connection list of the module instantiation. The top module deliberately// attempts to connect to the gap in the port list declaration and deliberately// omits the connection to the bus port b of module bottom.module bottom(a, b, {c,d}, , f); inout a, c, d, f; inout [1:0] b;endmodulemodule mid(a, b, c); inout [1:0] a; inout [1:0] b; inout c;endmodulemodule top(); wire [1:0] A, K, P, T, B, F, Q, U; bottom I1( , A, B, C, D), I2(E, , F, G, H), I3(J, K, , L, M), I4(N, P, Q, , R), I5(S, T, U, V, ); mid I6( , , W);endmodule
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -