📄 instruction_register.vhd
字号:
library ieee;use ieee.std_logic_1164.all; -- each module will need to use std_logicentity instruction_register is port( reset : in std_logic; -- master reset, same for each sequential module clk : in std_logic; -- same clock drives each sequential module we: in std_logic; -- controller sets this signal when Instruction_out need to be fetched IR_Code_in: in std_logic_vector(13 downto 0); -- Code fetched from the Program Memory Instruction_out: out std_logic_vector(13 downto 0); address_out: out std_logic_vector(12 downto 0));end entity instruction_register;architecture instruction_register of instruction_register issignal IR_Out: std_logic_vector(13 downto 0);begin process(clk, reset) is begin if (reset = '1') then IR_Out <= (others => '0'); address_out <= (others => '0'); else if rising_edge(clk) then if (we = '1') then IR_Out <= IR_Code_in; address_out <= "00" & IR_Code_in (10 downto 0); end if; end if; end if; end process; Instruction_out <= IR_Out;end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -