Full Adder VHDL Source Code

vhdl
adder
source code
digital logic
full adder

This page presents the VHDL source code for a Full Adder.

The equations for the Full Adder are as follows:

  • Sum (S) = (A) EXOR (B) EXOR (Ci)
  • Carry Out (CO) = (A AND B) OR (B AND Ci) OR (Ci AND A)

VHDL Code

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;

entity FA is
    Port(
        a, b, ci : in STD_LOGIC;
        s, co : out STD_LOGIC
    );
end FA;

architecture Behavioral of FA is
begin
    s <= a xor b xor ci;
    co <= (a and b) or (b and ci) or (ci and a);
end behavioral;

1x8 Demultiplexer VHDL Source Code

VHDL source code for a 1x8 demultiplexer (DEMUX) implementation. Includes code and related VHDL resources.

vhdl
demultiplexer
source code
VHDL Code for a 2 to 4 Decoder

VHDL Code for a 2 to 4 Decoder

This article provides VHDL source code for a 2-to-4 decoder, along with a block diagram and truth table for understanding its operation.

vhdl
decoder
2 to 4 decoder

3-to-8 Decoder VHDL Source Code

VHDL source code for a 3-to-8 decoder implementation, demonstrating a basic digital logic circuit.

vhdl
decoder
source code

8-to-3 Encoder VHDL Source Code

VHDL source code for an 8-to-3 encoder implementation, demonstrating a simple combinational logic circuit.

vhdl
encoder
source code