dout.vhd

来自「DesignWave 2005 8 Verilog Example」· VHDL 代码 · 共 25 行

VHD
25
字号
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 + =
减小字号Ctrl + -
显示快捷键?