📄 list_ch04_05_reg.vhd
字号:
-- Listing 4.5
library ieee;
use ieee.std_logic_1164.all;
entity reg_reset is
port(
clk, reset: in std_logic;
d: in std_logic_vector(7 downto 0);
q: out std_logic_vector(7 downto 0)
);
end reg_reset;
architecture arch of reg_reset is
begin
process(clk,reset)
begin
if (reset='1') then
q <=(others=>'0');
elsif (clk'event and clk='1') then
q <= d;
end if;
end process;
end arch;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -