Adder100
From HDLBits
exams/ece241_2014_q1cPrevious
Nextbcdadd4
Create a 100-bit binary adder. The adder adds two 100-bit numbers and a carry-in to produce a 100-bit sum and carry out.
Expected solution length: Around 1 line.
Module Declaration
module top_module( input [99:0] a, b, input cin, output cout, output [99:0] sum );
exams/ece241_2014_q1cPrevious
Nextbcdadd4