An interactive digital logic simulator for learning how computers perform binary operations.
SUM: ?
CARRY: ?
SUM = XOR(A,B)
CARRY = AND(A,B)
SUM: ?
CARRY OUT: ?
SUM = A XOR B XOR Carry In
Carry = (A AND B) OR (Carry In AND (A XOR B))
Enter two 4-bit binary numbers.
RESULT: ----
This calculator performs binary addition using the same Full Adder concept demonstrated above.