?? d_in.vhd
字號:
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_unsigned.all ;
entity D_IN is
port (
DATA : out std_logic; -- Input Register
DIN : in std_logic; -- Digital input
CLK : in std_logic -- Sampling Clock
);
end D_IN;
architecture rtl of D_IN is
begin
process(CLK)
begin
if (CLK'event and CLK = '1') then
DATA <= DIN ;
end if ;
end process;
end rtl;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -