forward.v

来自「openaccess与verilog互相转化时所用的源代码」· Verilog 代码 · 共 29 行

V
29
字号
// Forward Reference Testmodule top();    wire        a, b, c;    wire [1:0]  d, e;        mid named(.v(a), .z(e), .w(b), .x(c), .y(d));    mid order(a, b, c, d, e);endmodulemodule mid(inout v, w, x,            inout [1:0] y,           inout [1:2] z);    wire        a, b, c;    wire [3:0]  d, e;        bottom order[1:0](a, b, c, d, e);    bottom named[1:0](.v(a), .z(e), .w(b), .x(c), .y(d));endmodulemodule bottom(inout v, w, x,               inout [1:0] y, z);endmodule

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?