inv.vhd

来自「The objective of this projectis to desig」· VHDL 代码 · 共 21 行

VHD
21
字号
-- INVS modelUSE WORK.ALL;entity INV is     generic(constant TPLH:TIME:=2 ns;            constant TPHL:TIME:=3 ns);    port (I1:in BIT; O: out BIT);end INV;architecture BEH of INV isbegin P1: process(I1)begin   if (I1='1') then      O<= not I1 after TPHL;      else O<=not I1 after TPLH;   end if;  end process P1;       end BEH;   

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?