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

📄 ex_4_5_tff.vhd

📁 This is the course for VHDL programming
💻 VHD
字号:
entity TFF is	   port(T,CLK,RST: in BIT ;        Q : out BIT) ;	end TFF;architecture DF_DELAY of TFF isbegin	process(CLK,RST,T)	    variable int_Q:bit;	begin	    if RST = '1' then int_Q := '1';	    elsif CLK'event and CLK = '1' then	        if T= '1' then 	           int_Q := not int_Q after 5 ns;	        end if;	    end if;	    Q <= int_Q;	end process;end DF_DELAY;

⌨️ 快捷键说明

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