Full adder X12983


Statement
 

pdf   zip   verilog

main.dvi
background image

Jutge.org

The Virtual Learning Environment for Computer Programming

Full adder

X12983 en

Design a full adder. A full adder is a circuit that performs a 1-bit addition receiving an input

carry and generating an output carry.

The top module must be called full adder.

module

full adder(bcin sumcout );

input

bcin ;

output

sumcout;

Input

• and are the two inputs.

• cin is the input carry.

Output

• sum is the sum of the two bits and the input carry.

• cout is the output carry.

Problem information

Author : Jordi Cortadella

Generation : 2013-07-17 16:31:24

© Jutge.org, 2006–2013.

http://www.jutge.org

Information
Author
Jordi Cortadella
Language
English
Official solutions
Unknown. This problem is being checked.
User solutions
Verilog