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

📄 tt.vhd

📁 d 触发器 简单的d触发器
💻 VHD
字号:
---------------------------------------------------------------------------------------------------
--
-- Title       : tt
-- Design      : dchufa
-- Author      : king
-- Company     : king
--
---------------------------------------------------------------------------------------------------
--
-- File        : tt.vhd
-- Generated   : Tue Dec 11 19:27:47 2007
-- From        : interface description file
-- By          : Itf2Vhdl ver. 1.20
--
---------------------------------------------------------------------------------------------------
--
-- Description : 
--
---------------------------------------------------------------------------------------------------

--{{ Section below this comment is automatically maintained
--   and may be overwritten
--{entity {tt} architecture {tt}}

library IEEE;
use IEEE.STD_LOGIC_1164.all;



entity tt is
	 port(
		 d : in STD_LOGIC;
		 clk : in STD_LOGIC;
		 q : out STD_LOGIC
	     );
end tt;

--}} End of automatically maintained section

architecture tt of tt is
begin
 process(clk,d)
  begin
	  if clk'event and clk='1' then
		  q<=d;
	  end if;
	  end process;
	 -- enter your statements here --

end tt;

⌨️ 快捷键说明

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