outoptions.v
来自「openaccess与verilog互相转化时所用的源代码」· Verilog 代码 · 共 25 行
V
25 行
// Test the writer's ability to handle leaf cells.module top(); wire a, b; leaf1 I4(a, b); leaf2 I5(a, b);endmodulemodule leaf1(input in, output out);endmodulemodule leaf2(.in(x), .out(y)); input in; output out; wire x, y;endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?