📄 synchronize.vhd
字号:
---- 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -