📄 and.v
字号:
module AND(in1, in2, out); //Structural model of AND gate from two NANDS input in1, in2; output out; wire w1; // two instances of the module NAND NAND NAND1(in1, in2, w1); NAND NAND2(w1, w1, out);endmodule
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -