synchronize.vhd

来自「8051IP 核源代码」· VHDL 代码 · 共 37 行

VHD
37
字号
---- Copyright (c) 2001 Koay Kah Hoe.  Permission to copy is granted-- provided that this header remains intact.  This code is provided-- with no warranties.---- Version : 1.0----------------------------------------------------------------------------------- Synchronize: Library module created by VHDL Module Generator---- Synchronizelibrary IEEE;use IEEE.std_logic_1164.all;use IEEE.std_logic_arith.all;entity Synchronize is	port (		ASYN : in STD_LOGIC;		SYNC : out STD_LOGIC;		CLK : in STD_LOGIC	);end Synchronize;architecture Synchronize_arch of Synchronize isbegin	process (CLK)	begin		if rising_edge(CLK) then			SYNC <= ASYN;		end if;	end process;end Synchronize_arch;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?