ex_p5_21_gen_nand.vhd
来自「This is the course for VHDL programming」· VHDL 代码 · 共 9 行
VHD
9 行
entity nand2 is generic(d:time:= 4 ns); port(i1,i2: in BIT:='1';o : out BIT) ; end nand2;architecture gen of nand2 isbegin o<= i1 nand i2 after d;end gen;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?