Adders and Multiplexers by Sneh
Adders and Multiplexers by Sneh
INPUT OUTPUT
A B SUM CARRY
0 0 0 0
0 1 1 0
1 0 1 0
1 1 0 1
Simulation diagram:
Simulation results:
------------------------------------------------------------------------------------------------
Experiment 4: Simulation of a full-adder
circuit
A full adder adds binary numbers and accounts for values carried in as
well as out. A one-bit full-adder adds three one-bit numbers into carry
and sum values.
INPUT OUTPUT
A B C SUM CARRY
0 0 0 0 0
0 0 1 1 0
0 1 0 1 0
0 1 1 0 1
1 0 0 1 0
1 0 1 0 1
1 1 0 0 1
1 1 1 1 1
Simulation diagram:
------------------------------------------------------------------------------------------------
Experiment 5: Simulation of a multiplexer
circuit (4:1)
A multiplexer is a device that selects between several analog or digital
input signals and forward the selected input to a single output line. the
selection is directed by a separate set of digital inputs known as
selected lines
INPUT OUTPUT
S0 S1 Y
0 0 I0
0 1 I1
1 0 I2
1 1 I3
Simulation diagram:
8:1 multiplexer
INPUT OUTPUT
S2 S1 S0 Y
0 0 0 I0
0 0 1 I1
0 1 0 I2
0 1 1 I3
1 0 0 I4
1 0 1 I5
1 1 0 I6
1 1 1 I7
Simulation diagram:
Simulation results: