⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 forward.v

📁 openaccess与verilog互相转化时所用的源代码
💻 V
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -