implicitwire.v
来自「openaccess与verilog互相转化时所用的源代码」· Verilog 代码 · 共 14 行
V
14 行
// Verify that implicit wires can be created and used.// The cOut and x8 identifiers should be treated as implicit wires.module NAND(output out, input in1, in2); always @(out,in1,in2);endmodulemodule top(output sum, input aIn, bIn, cIn); wire x2; NAND I1(x2,aIn,bIn), I2(cOut,x2,x8);endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?