LogicForge

An interactive digital logic simulator for learning how computers perform binary operations.

Logic Gate Simulator






?

Truth Table Generator



Half Adder





SUM: ?

CARRY: ?

How It Works

SUM = XOR(A,B)

CARRY = AND(A,B)

Full Adder







SUM: ?

CARRY OUT: ?

How It Works

SUM = A XOR B XOR Carry In

Carry = (A AND B) OR (Carry In AND (A XOR B))

Binary Calculator

Enter two 4-bit binary numbers.





RESULT: ----

How It Works

This calculator performs binary addition using the same Full Adder concept demonstrated above.