📄 dout.vhd
字号:
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_unsigned.all ;
entity D_OUT is
port (
DATA : in std_logic; -- Input Register
DOUT : out std_logic; -- Digital input
CLK : in std_logic -- Sampling Clock
);
end D_OUT;
architecture rtl of D_OUT is
begin
process(CLK)
begin
if (CLK'event and CLK = '1') then
DOUT <= DATA ;
end if ;
end process;
end rtl;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -