Integrated Circuits
Integrated Circuits
INTEGRATED CIRCUITS
• An integrated circuit (IC) is fabricated on a die of a
silicon semiconductor crystal, called a chip,
containing the electronic components for
constructing digital gates.
• The differentiation between those chips which have a few internal gates
and those having hundreds of thousands of gates is made by customary
reference to a package as being either a small‐, medium‐, large‐, or very
large‐scale integration device.
• MOS is suitable for circuits that need high component density, and
CMOS is preferable in systems requiring low power consumption,
such as digital cameras, personal media players, and other
handheld portable devices. Low power consumption is essential
for VLSI design; therefore, CMOS has become the dominant logic
family, while TTL and ECL continue to decline in use.
DIGITAL LOGIC GATES
• Since Boolean functions are expressed in terms of AND, OR, and NOT
operations, it is easier to implement a Boolean function with these type of
gates. Still, the possibility of constructing gates for the other logic operations
is of practical interest.
x F = x’
0 1
1 0
A B F = A+B
0 0 0
0 1 1
1 0 1
1 1 1
Using a single 7400 IC, connect a circuit that produces an inverter
Using a single 7400 IC, connect a circuit that produces a
two-input AND gate
Using a single 7400 IC, connect a circuit
that produces a two-input OR gate
Using a single 7400 IC, connect a circuit
that produces a two-input EX-OR gate
Implement the Boolean function:
F = A . (B + C)
Circuit Diagram
A B C F=A.(B+C)
0 0 0 0
0 0 1 0
0 1 0 0
0 1 1 0
1 0 0 0
1 0 1 1
1 1 0 1
1 1 1 1
Circuit Diagram using NAND gates
A B C F=((AB)’.(AC)’)’
0 0 0 0
0 0 1 0
0 1 0 0
0 1 1 0
1 0 0 0
1 0 1 1
1 1 0 1
1 1 1 1