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

📄 inouttest.ref

📁 openaccess与verilog互相转化时所用的源代码
💻 REF
字号:
// Verilog file for cell "top" view "netlist" // Language Version: 2001 module bottom (    v,    w,    x,    y,    z);    inout v;    inout w;    inout x;    inout [1:0] y;    inout [1:0] z;endmodule // bottommodule top (    v,    w,    x,    y,    z);    inout v;    inout w;    inout x;    inout [1:0] y;    inout [1:0] z;    wire [1:0] e;    wire [1:0] d;    wire c;    wire b;    wire a;    bottom named (            .v(a),            .w(b),            .x(c),            .y(d),            .z(e));    bottom order (            .v(a),            .w(b),            .x(c),            .y(d),            .z(e));endmodule // top

⌨️ 快捷键说明

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