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

📄 reg.vhd

📁 last cordic for immplemantaion of cordic with vhdl language it has testbench
💻 VHD
字号:

-- Description : 64 bit register and input mux

library ieee;
library work;
 use ieee.std_logic_1164.all;
 use ieee.std_logic_arith.all;
 use ieee.std_logic_unsigned.all;
 use work.all;
 entity reg is port(
 clock : in std_logic;
 go : in std_logic;
 d : in std_logic_vector(63 downto 0);
 add : in std_logic_vector(63 downto 0);
 latch : out std_logic_vector(63 downto 0));
 end reg;

 architecture behavioral of reg is

 begin

 process(clock)
 begin
 if rising_edge(clock) then
 if (go = '1') then

 latch <=d;
 else

 latch <= add ;
 end if;
 end if;
 end process;

 end behavioral;

⌨️ 快捷键说明

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