📄 reg.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 + -