primitive.vhd

来自「一部分简单时序逻辑电路的VHDL源代码」· VHDL 代码 · 共 66 行

VHD
66
字号
library IEEE;use IEEE.std_logic_1164.all;package primitive is  component DFFE port (    d: in std_logic;    q: out std_logic;    en: in std_logic;    clk: in std_logic    );  end component;  component DLATCHH port (    d: in std_logic;    en: in std_logic;    q: out std_logic    );  end component;end package;library IEEE;use IEEE.std_logic_1164.all;entity DFFE is port (    d: in std_logic;    q: out std_logic;    en: in std_logic;    clk: in std_logic    );end DFFE;architecture rtl of DFFE isbegin  process begin    wait until clk = '1';      if (en = '1') then        q <= d;      end if;  end process;end rtl;library IEEE;use IEEE.std_logic_1164.all;entity DLATCHH is port (    d: in std_logic;    en: in std_logic;    q: out std_logic    );end DLATCHH;architecture rtl of DLATCHH isbegin  process (en) begin    if (en = '1') then      q <= d;    end if;  end process;end rtl;

⌨️ 快捷键说明

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