pcr739428.v

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

V
18
字号
// Verify that the ported nets (not the port aliases) are declared// input/output/inout.module leaf (.a(x), .b(y), .c({w, z[3], z[2], z[1]}));	inout		w;	input		x;	output	[3:0]	y;	inout 	[7:0]	z;endmodulemodule top();	wire		p;	wire	[3:0]	q;	wire	[3:0]	r;	leaf	I1(.a(p), .b(q), .c(r));endmodule

⌨️ 快捷键说明

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