<<< Adding the Sign Bits     Index     Signed Numbers Addition >>>

8. The Overfow Output


  •  

    INPUTS OUTPUTS
    Asign Bsign CARRY IN CARRY OUT SUMsign OVERFLOW
    0 0 0 0 0 ?
    0 0 1 0 1 ?
    0 1 0 0 1 ?
    0 1 1 1 0 ?
    1 0 0 0 1 ?
    1 0 1 1 0 ?
    1 1 0 1 0 ?
    1 1 1 1 1 ?

  •  

  • Full adder truth table for the sign bit can be extended to include new output which indicates if overfow condition has occured.

  • Our task is to populate the OVERFLOW column with corresponding values.


<<< Adding the Sign Bits     Index     Signed Numbers Addition >>>