⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ffd.vhd

📁 一些很好的FPGA设计实例
💻 VHD
字号:
library IEEE;
use IEEE.std_logic_1164.all;

entity ffd is
port (
LOAD : in std_logic;
CLK : in std_logic;
DATA_IN : in std_logic_vector (12 downto 0);
DATA_OUT : out std_logic_vector (12 downto 0)
);
end entity;



architecture ffd_arch of ffd is
signal TEMP_DATA_OUT: std_logic_vector (12 downto 0);
begin

process (CLK)
begin

if rising_edge(CLK) then
if LOAD = '1' then
TEMP_DATA_OUT <= DATA_IN;
end if;
end if;

end process;

DATA_OUT <= TEMP_DATA_OUT;

end architecture; 
 

⌨️ 快捷键说明

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