📄 tr_dff2.vhd
字号:
--tr_dff2.vhd
--v0.1
library ieee;
use ieee.std_logic_1164.all;
entity tr_dff2 is
port(
clk: in std_logic;
in_outp: in std_logic_vector(1 downto 0);
out_outp: out std_logic_vector(1 downto 0)
);
end tr_dff2;
architecture a of tr_dff2 is
begin
process(clk,in_outp)
begin
if rising_edge(clk) then
out_outp<=in_outp;
end if;
end process;
end a;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -