Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Design Full Adder using appropriate software like VHDL (xilinx)., Assignments of Verilog and VHDL

Design Full Adder using appropriate software like VHDL (xilinx).

Typology: Assignments

2012/2013

Available from 04/17/2023

rakeshasery
rakeshasery 🇮🇳

55 documents

1 / 2

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
RAKESH ASERY(09EC73)
OBJECT:-Design Full Adder using appropriate software like VHDL (xilinx).
Full Adder CODING :-
entity RAFADDER is
Port ( A : in std_logic;
B : in std_logic;
C : in std_logic;
SUM : out std_logic;
CARRY : out std_logic);
end RAFADDER;
architecture Behavioral of RAFADDER is
begin
SUM <= A XOR B XOR C;
CARRY <= (A AND B) OR (B AND C) OR (C AND A);
end Behavioral;
SCHEMETIC DIAGRAM OF SUM :-
pf2

Partial preview of the text

Download Design Full Adder using appropriate software like VHDL (xilinx). and more Assignments Verilog and VHDL in PDF only on Docsity!

RAKESH ASERY(09EC73)

OBJECT:-Design Full Adder using appropriate software like VHDL (xilinx). Full Adder CODING :- entity RAFADDER is Port ( A : in std_logic; B : in std_logic; C : in std_logic; SUM : out std_logic; CARRY : out std_logic); end RAFADDER; architecture Behavioral of RAFADDER is begin SUM <= A XOR B XOR C; CARRY <= (A AND B) OR (B AND C) OR (C AND A); end Behavioral; SCHEMETIC DIAGRAM OF SUM :-

RAKESH ASERY(09EC73)

TRUTH TABLE OF SUM :-

SCHEMETIC DIAGRAM OF CARRY :-

TRUTH TABLE OF CARRY :-

RESULT:- We have successfully design Full Adder.