⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 synp.vhd

📁 三端口输入
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;

entity synp is
	port(clk: in std_logic;
		enab: in std_logic;
	   	syndin: in std_logic;
		 synp: out std_logic);
end synp;

architecture xsynp of synp is 
signal syndin1 : std_logic;
begin

process(clk)
begin
if clk'event and clk='1' then
	syndin1<=syndin;
	if ( syndin=enab and syndin1=not enab) then
		synp<='1';
	else
		synp<='0';
	end if;
end if;
end process;

end xsynp;

⌨️ 快捷键说明

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