diff options
author | fossee | 2019-09-03 10:51:06 +0530 |
---|---|---|
committer | fossee | 2019-09-03 10:51:06 +0530 |
commit | 7f369bc451dc4189529efa1e5c9febe52c68a876 (patch) | |
tree | dac91d36548334efc67ed1851e780a90ba0c9076 /nghdl/Example/nghdl_half_adder/nghdl_ha.vhdl | |
parent | d4c0c9f05d7b6d5246c9a193fb4c5a01e2eae213 (diff) | |
download | eSim-7f369bc451dc4189529efa1e5c9febe52c68a876.tar.gz eSim-7f369bc451dc4189529efa1e5c9febe52c68a876.tar.bz2 eSim-7f369bc451dc4189529efa1e5c9febe52c68a876.zip |
separated nghdl
Diffstat (limited to 'nghdl/Example/nghdl_half_adder/nghdl_ha.vhdl')
-rw-r--r-- | nghdl/Example/nghdl_half_adder/nghdl_ha.vhdl | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/nghdl/Example/nghdl_half_adder/nghdl_ha.vhdl b/nghdl/Example/nghdl_half_adder/nghdl_ha.vhdl deleted file mode 100644 index f9f2e929..00000000 --- a/nghdl/Example/nghdl_half_adder/nghdl_ha.vhdl +++ /dev/null @@ -1,22 +0,0 @@ -library ieee; -use ieee.std_logic_1164.all; -use ieee.numeric_std.all; - -entity nghdl_ha is -port ( - i_bit1 : in std_logic_vector(0 downto 0); - i_bit2 : in std_logic_vector(0 downto 0); - o_sum : out std_logic_vector(0 downto 0); - o_carry : out std_logic_vector(0 downto 0) - ); -end nghdl_ha; - - -architecture rtl of nghdl_ha is - -begin - - o_sum <= i_bit1 xor i_bit2; - o_carry <= i_bit1 and i_bit2; - -end rtl;
\ No newline at end of file |