Add files via upload

This commit is contained in:
Ikatono
2017-09-06 20:49:31 -04:00
committed by GitHub
parent 70e5eb0ddc
commit 0803783a02
16 changed files with 582 additions and 0 deletions

22
dff.vhd Normal file
View File

@@ -0,0 +1,22 @@
library ieee;
use ieee.std_logic_1164.all;
entity dff is
port( d: in std_logic;
clk: in std_logic;
rst: in std_logic;
q: out std_logic
);
end dff;
architecture behav of dff is
begin
process (clk) is
begin
if rising_edge(clk) then
q <= d and rst;
end if;
end process;
end behav;