42_dumpcheck_2v.out

来自「Verilog Parser in Perl」· OUT 代码 · 共 28 行

OUT
28
字号
module foo (   abcconst, def, noconnect, x, y);   input [2:0] abcconst;   input [31:0] def;   input signed [3:0] noconnect;   input x;   input y;endmodulemodule foo2 (   x, y, z);   output x;   input y;   input z;endmodulemodule pinorder4 (   );   wire [31:0] IPCD_const = 32'h1;   wire [7:0] a_i;   wire b_i;   wire d_o;   foo foo1 (.abcconst(3'h0), .def(IPCD_const), .noconnect(), .x(a_i), .y(b_i));   foo2 foo2 (.x(b_i), .y(d_o), .z(a_i[0]));   foo foo3 (.abcconst(3'h0), .def(IPCD_const), .x(a_i), .y(b_i));endmodule

⌨️ 快捷键说明

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