delay_element.vhd

来自「Self timed pipelined adder」· VHDL 代码 · 共 24 行

VHD
24
字号
library IEEE;use IEEE.STD_LOGIC_1164.ALL;use IEEE.STD_LOGIC_ARITH.ALL;use IEEE.STD_LOGIC_UNSIGNED.ALL;---- Uncomment the following library declaration if instantiating---- any Xilinx primitives in this code.--library UNISIM;--use UNISIM.VComponents.all;entity Delay_Element is    Port ( Input : in  STD_LOGIC;           Output : out  STD_LOGIC);end Delay_Element;architecture Behavioral of Delay_Element isbeginOutput <= Input after 10 ns;end Behavioral;

⌨️ 快捷键说明

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