0% found this document useful (0 votes)
1K views1 page

Full Adder VHDL Code Using Data Flow Modeling

This document describes a VHDL code for a full adder circuit using a data flow modeling approach. It includes the library declaration, entity declaration with input and output ports, and architecture with concurrent statements that define the sum and carry outputs using XOR and AND operations on the input ports a, b, and c. The document also mentions this provides an RTL view and output waveforms can be observed.

Uploaded by

OP2R
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
1K views1 page

Full Adder VHDL Code Using Data Flow Modeling

This document describes a VHDL code for a full adder circuit using a data flow modeling approach. It includes the library declaration, entity declaration with input and output ports, and architecture with concurrent statements that define the sum and carry outputs using XOR and AND operations on the input ports a, b, and c. The document also mentions this provides an RTL view and output waveforms can be observed.

Uploaded by

OP2R
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 1

ONLINE PLATFORM FOR PROGRAMMING AND RESEARCH (OP2R)

FULL ADDER VHDL CODE USING DATA FLOW MODELING

Library declaration
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
--------------------------------------------

entity full_adder is
Port ( a, b, c: in STD_LOGIC;
sum ,carry: out STD_LOGIC);
end full_adder;
---------------------------------------------

Std_logic_1164; package for std_logic (predefined data type).

Entity declaration.
a, b, c :- input port bits (bits to be
added)
Sum, carry: - output port bits.

architecture Behavioral_FA of full_adder is


begin
-------------------------------------------------------sum<= a xor b xor c;
carry<= ((a and b) or ( b and c) or (c and a));
------------------------------------------------------end Behavioral_HA;

RTL VIEW:-

INFOOP2R.WIX.COM/OP2R

OUT PUT WAVEFORMS:

Concurrent statements.
These are the circuit expressions which
are formed by k-map or Boolean
function.

You might also like