summaryrefslogtreecommitdiff
path: root/VHDL/d_ff.vhdl
diff options
context:
space:
mode:
authorAmbikeshwar2016-05-25 14:20:23 +0530
committerAmbikeshwar2016-05-25 14:20:23 +0530
commitb503d66fcc1e26be28b58cccf888e43f99d35ae2 (patch)
tree2dbf0c992715e8bd06184f7d6aeb35ef80f50b20 /VHDL/d_ff.vhdl
parentd0196e42ce0b3bebe9a4a60a974746d57dd93f83 (diff)
downloadNGHDL-Example-b503d66fcc1e26be28b58cccf888e43f99d35ae2.tar.gz
NGHDL-Example-b503d66fcc1e26be28b58cccf888e43f99d35ae2.tar.bz2
NGHDL-Example-b503d66fcc1e26be28b58cccf888e43f99d35ae2.zip
Samples of VHDL code added for testing
Diffstat (limited to 'VHDL/d_ff.vhdl')
-rw-r--r--VHDL/d_ff.vhdl19
1 files changed, 19 insertions, 0 deletions
diff --git a/VHDL/d_ff.vhdl b/VHDL/d_ff.vhdl
new file mode 100644
index 0000000..efc4177
--- /dev/null
+++ b/VHDL/d_ff.vhdl
@@ -0,0 +1,19 @@
+library ieee;
+use ieee. std_logic_1164.all;
+use ieee.numeric_std.all;
+
+entity d_ff is
+PORT( D: in std_logic_vector(0 downto 0);
+CLOCK: in std_logic_vector(0 downto 0);
+Q: out std_logic_vector(0 downto 0));
+end d_ff;
+
+architecture behavioral of d_ff is
+begin
+process(CLOCK)
+begin
+if(CLOCK='1' and CLOCK'EVENT) then
+Q<=D;
+end if;
+end process;
+end behavioral;