Lab 7
Page 2


Simulation and Basic Logic Gates

The Simulator

We begin by describing the simulation part of our design tool. We will work with circuits that have been designed already. Later you will design your own circuits and simulate them using this simulator.

The simulator is quite easy to use. Each circuit has input boxes, called sources and output boxes, called signals. (A signal can be placed at the output of any logic gate, not just at the output of the entire circuit.) Each source has some value; that value can be changed to the complementary value by clicking on the input box. Each signal shows the value at that point in the circuit for the input values shown at the sources. To simulate a circuit for different input values, one simply clicks on the sources to change the input values and observes the output values at the signals.

Basic Gates

Here we show the basic gates that we used as building blocks in class: the AND gate, the OR gate, and the NOT gate (or inverter). Click on the inputs for each gate and observe the outputs.

AND

A B AANDB
0 0 0
0 1 0
1 0 0
1 1 1

OR

A B AORB
0 0 0
0 1 1
1 0 1
1 1 1

NOT

A NOT A
0 1
1 0

More Gates

Here we introduce more Boolean gates that can be used as building blocks when designing a circuit. We have seen XOR (exclusive or) in class. NAND and NOR and NXOR are the complements of AND, OR and XOR, respectively. Again, click on the inputs for each gate and observe the outputs.

NAND

A B ANANDB
0 0 1
0 1 1
1 0 1
1 1 0

NOR

A B ANORB
0 0 1
0 1 0
1 0 0
1 1 0

XOR

A B AXORB
0 0 0
0 1 1
1 0 1
1 1 0

XNOR

A B AXNORB
0 0 1
0 1 0
1 0 0
1 1 1

PREVIOUS 1 | 2 | 3 | 4 | 5 | 6 NEXT

emkawas@princeton.edu