📄 implicitwire.v
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -