FPGA 设计 VHDL/T 触发器
外观
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity t_trigger is
port (T,Reset,CLK,CLK_enable: in std_logic;
Q: out std_logic);
end t_trigger;
architecture beh_t_trigger of t_trigger is
begin
process (Reset,CLK)
variable temp: std_logic;
begin
if (rising_edge(CLK)) then --sometimes you need to include a package for rising_edge, you can use CLK'EVENT AND CLK = '1' instead
if Reset='1' then
temp := '0';
elsif CLK_enable ='1' then
temp := T xor temp;
end if;
end if;
Q <= temp;
end process;
end beh_t_trigger;
File:T FF SCH F.png