📄 inouttest.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 + -