outoptions.ref

来自「openaccess与verilog互相转化时所用的源代码」· REF 代码 · 共 50 行

REF
50
字号
// Verilog file for cell "top" view "netlist" // Language Version: custom // **************************************************************// Module top of outOptionsLib.top.netlist// **************************************************************module top ();                wire a;                wire b;                leaf1 I4 (                                                .in(a),                                                .out(b));                leaf2 I5 (                                                .in(a),                                                .out(b));endmodule // top// This file contains the Verilog leaf cells for outOptionsLib.top.netlist// Language Version: custom // **************************************************************// Module leaf1 of leafLib.leaf1.abstract// **************************************************************module leaf1 (                in,                out);                input in;                output out;endmodule // leaf1// **************************************************************// Module leaf2 of leafLib.leaf2.abstract// **************************************************************module leaf2 (                in,                out);                input in;                output out;endmodule // leaf2

⌨️ 快捷键说明

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