inouttest.ref
来自「openaccess与verilog互相转化时所用的源代码」· REF 代码 · 共 54 行
REF
54 行
// 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 + =
减小字号Ctrl + -
显示快捷键?