Domino Computer

a CS 3102 Project

Domino Logic Gates

Inspired by The 10,000 Domino Computer

AND Gate

The AND gate is true when both of its inputs are true.

A B A ∧ B
0 0 0
0 1 0
1 0 0
1 1 1

OR Gate

The OR gate is true when either (or both) inputs are true.

A B A ∨ B
0 0 0
0 1 1
1 0 1
1 1 1

NOT Gate

The NOT Gate outputs the opposite of its input.

A ¬ A
0 1
1 0

NAND Gate

The NAND gate is false when both of its inputs are true and true otherwise.

A B A NAND B
0 0 1
0 1 1
1 0 1
1 1 0

Continue to the sandbox!