VHDL code for Rising edge D Flip-Flop with Asynchronous Reset
library IEEE;
use IEEE.std_logic_1164.all;
entity dff_async_rst is
port ( data, clk, reset: in std_logic;
q: out std_logic);
end dff_async_rst;
architecture behav of dff_async_rst is
begin
process (clk, reset) begin
if (reset = '0') then
q<='0';
elsif (clk'event and clk='1') then
q<= data;
end if;
end process
end behav;
0 Comments:
Post a Comment
<< Home