nicojensen.de/vendor/bundle/gems/rouge-3.3.0/lib/rouge/demos/vhdl

24 lines
378 B
Text
Raw Normal View History

2019-03-12 13:49:49 +01:00
entity toggle_demo is
port (
clk_in : in std_logic; -- System Clock
data_q : out std_logic -- Toggling Port
);
end entity toggle_demo;
architecture RTL of toggle_demo is
signal data : std_logic := '0';
begin
data_q <= data;
data_proc : process (clk_in)
begin
if (rising_edge(clk_in)) then
data <= not data;
end if;
end process;
end architecture RTL;