summaryrefslogtreecommitdiff
path: root/Example/full_adder/full_adder_sl.vhdl
diff options
context:
space:
mode:
authorRahul P2019-11-19 12:32:39 +0530
committerGitHub2019-11-19 12:32:39 +0530
commita6c0b36fcaba6c1f2d366432b2386122674b4782 (patch)
tree18a02155e45110fd6419139e48f6d9b277ab9870 /Example/full_adder/full_adder_sl.vhdl
parent2fe70dd26008b0f4920928d592290614bf47ce5d (diff)
parent6e12269c0681dcfb0d1ec927670fb9d69464af9c (diff)
downloadnghdl-a6c0b36fcaba6c1f2d366432b2386122674b4782.tar.gz
nghdl-a6c0b36fcaba6c1f2d366432b2386122674b4782.tar.bz2
nghdl-a6c0b36fcaba6c1f2d366432b2386122674b4782.zip
Merge pull request #29 from rahulp13/master
Updated nghdl
Diffstat (limited to 'Example/full_adder/full_adder_sl.vhdl')
-rw-r--r--Example/full_adder/full_adder_sl.vhdl19
1 files changed, 19 insertions, 0 deletions
diff --git a/Example/full_adder/full_adder_sl.vhdl b/Example/full_adder/full_adder_sl.vhdl
new file mode 100644
index 0000000..e830563
--- /dev/null
+++ b/Example/full_adder/full_adder_sl.vhdl
@@ -0,0 +1,19 @@
+library ieee;
+use ieee.std_logic_1164.all;
+use ieee.numeric_std.all;
+
+entity full_adder_sl is
+ port (
+ i_bit1 : in std_logic;
+ i_bit2 : in std_logic;
+ i_bit3 : in std_logic;
+ o_sum : out std_logic;
+ o_carry : out std_logic
+ );
+end full_adder_sl;
+
+architecture rtl of full_adder_sl is
+begin
+ o_sum <= i_bit1 xor i_bit2 xor i_bit3;
+ o_carry <= (i_bit1 and i_bit2) or (i_bit2 and i_bit3) or (i_bit3 and i_bit1);
+end rtl; \ No newline at end of file