Adder100

2023. 6. 26. 15:49FPGA/HDLBits

728x90

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.

module top_module( 
    input [99:0] a, b,
    input cin,
    output cout,
    output [99:0] sum );

    assign {cout, sum} = a+b+cin;
endmodule

'FPGA > HDLBits' 카테고리의 다른 글

Exams/m2014 q3  (0) 2023.06.26
Bcdadd4  (0) 2023.06.26
Bcdadd100  (0) 2023.06.26
Adder100i  (0) 2023.06.25
Reduction  (0) 2023.06.24