diff options
author | Ambikeshwar | 2016-05-25 14:20:23 +0530 |
---|---|---|
committer | Ambikeshwar | 2016-05-25 14:20:23 +0530 |
commit | b503d66fcc1e26be28b58cccf888e43f99d35ae2 (patch) | |
tree | 2dbf0c992715e8bd06184f7d6aeb35ef80f50b20 /VHDL/or_nghdl.vhdl | |
parent | d0196e42ce0b3bebe9a4a60a974746d57dd93f83 (diff) | |
download | NGHDL-Example-b503d66fcc1e26be28b58cccf888e43f99d35ae2.tar.gz NGHDL-Example-b503d66fcc1e26be28b58cccf888e43f99d35ae2.tar.bz2 NGHDL-Example-b503d66fcc1e26be28b58cccf888e43f99d35ae2.zip |
Samples of VHDL code added for testing
Diffstat (limited to 'VHDL/or_nghdl.vhdl')
-rw-r--r-- | VHDL/or_nghdl.vhdl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/VHDL/or_nghdl.vhdl b/VHDL/or_nghdl.vhdl new file mode 100644 index 0000000..92e36a8 --- /dev/null +++ b/VHDL/or_nghdl.vhdl @@ -0,0 +1,15 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity or_nghdl is + port (x : in std_logic_vector(0 downto 0); + y : in std_logic_vector(0 downto 0); + z : out std_logic_vector(0 downto 0)); + end or_nghdl; + + architecture rtl of or_nghdl is + begin + + z <= x or y; + + end rtl; |