and.v
来自「將Verilog設計轉成VHDL設計的程式」· Verilog 代码 · 共 11 行
V
11 行
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 + =
减小字号Ctrl + -
显示快捷键?