Chapter 10 Digital Integrated Circuits
Chapter 10 Digital Integrated Circuits
Chapter 10 Digital Integrated Circuits
Circuits
10-1 Introduction
NAND gate
NOR gate
Fan-Out
The fan-out of a gate specifies the number of
standard loads that can be connected to the
output of the gate without degrading its normal
operation.
The fan-out is calculated from the amount of
current available in the output of a gate and the
amount of current needed in each input of a gate.
10-2 Special Characteristics
Fan-Out
The fan-out of the gate is calculated from the ratio
IOH/IIH or IOL/IIL, whichever is smaller.
10-2 Special Characteristics
Power Dissipation
The power dissipation is a parameter
The current thatfrom
that is drawn
The current that is drawn from
represents the amount of power
the power supply needed
when thebyoutput
the
the power supply when the output
gate. of the gate is in the low-voltage
of the
Thegate is in
power is the
the high-voltage
product VCC × ICC .
level
level
The current drain from the power supply depends
on the logic state of the gate.
Supply voltage
The current
The average current is ICC (avg) = ( ICCHthat is ) /2
+ ICCL
drawn by the circuit.
10-2 Special Characteristics
Power Dissipation
The average power dissipation
PD (avg) = ICC (avg) × VCC
Propagation Delay
The propagation delay of a gate is the average
transition-delay time for the signal to propagate
from input to output when the binary signal
changes in value.
The signal-delay time
between the input and
output when the
output changes from
the high to the low
level is referred to as
tPHL
10-2 Special Characteristics
Propagation Delay
The propagation delay of a gate is the average
transition-delay time for the signal to propagate
from input to output when the binary signal
changes in value.
When the output goes
from the low to the
high level, the delay
is tPLH
10-2 Special Characteristics
Noise Margin
Noise is a term used to denote an undesired signal
that is superimposed upon the normal operating
signal.
Noise Margin
Noise margin is
the difference VOH
-VIH or VIL -VOL ,
whichever is
smaller.
10-3 Bipolar-Transistor Characteristics
Current
Region VBE(V) VCE(V) Relationship
Cutoff < 0.6 Open circuit IB = IC = 0
Active 0.6-0.7 > 0.8 IC = hFEIB
Saturation 0.7-0.8 0.2 I >=I /h
B CS FE
10-3 Bipolar-Transistor Characteristics
Demonstration
Consider the inverter circuit of
the figure with the following
parameters:
RC = 1KΩ VCC = 5V
RB = 22KΩ H = 5V
hFE = 50 L = 0.2 V
10-3 Bipolar-Transistor Characteristics
Demonstration
IB = (Vi – VBE) / RB = (5 – 0.7) /
22KΩ = 0.195mA
ICS = (VCC – VCE) / RC
= (5 – 0.2) /1KΩ = 4.8mA
0.195 = IB >= ICS/hAssuming
FE = 4.8/50
VCE =0.09
=0.2V
6mA
Emitter-follower
outputs
10-6 Emitter-Coupled Logic
The graphic symbol
of ECL Gate
Wired-OR
Wired-AND
10-7 Metal-Oxide Semiconductor (MOS)
Inverter
NAND Gate
NAND Gate
NOR Gate
1. If either input is
high, the
corresponding
transistor conducts
and the output is low.
2. If all inputs are low,
all active transistors
are off and the
output is high.
10-8 Complementary MOS (CMOS)
Inverter
1. When the input is low, both
gates are zero potential.
The input is at –VDD,
Therelative
sourceto the source
terminal of the
of the p-
p-channel device and at 0 V 0 1
channel device is at V DD
relative to the source of the
n-channel device. p-channel
device is turned on and the
The source
n-channel terminal
device of the n-
is turned
off.channel device is at ground.
10-8 Complementary MOS (CMOS)
Inverter
NAND Gate
A two-input NAND gate
consists of two p-type units in
parallel and two n-type units 0
in serial.
1
If all inputs are high, both p-
channel transistors turn off
and both n-channel 1
transistors turn on. The
output produces a low state.
10-8 Complementary MOS (CMOS)
NAND Gate
If any input is low, the
associated n-channel
transistor is turned off and 1
the associated p-channel
1
transistor is turned on. The
output goes to the high state.
0
10-8 Complementary MOS (CMOS)
NOR Gate
A two-input NOR gate
consists of two n-type units 0
in parallel and two p-type
units in serial. 0
If all inputs are low, both 1
p-channel transistors turn
on and both n-channel
transistors turn off. The
output goes to the high
state.
10-8 Complementary MOS (CMOS)
NOR Gate
If any input is high, the
1
associated p-channel
transistor is turned off and
the associated n-channel 0
0
transistor is turned on. The
output goes to the low state.
10-8 Complementary MOS (CMOS)
COMS Characteristics
Q=D
10-9 CMOS Transmission Gate Circuits
Gated D Latch with Transmission
Gates
Q retains its
present state.
0
10-10 Switch-Level Modeling with HDL
Inverter
//CMOS inverter Fig. 10-22 (a)
module inverter (Y,A);
input A;
output Y;
supply1 PWR; Define the
supply0 GRD; power and
pmos (Y,PWR,A); //(Drain,source,gate)
nmos (Y,GRD,A); //(Drain,source,gate)
ground with the
endmodule keywords
supply1 and
supply0
10-10 Switch-Level Modeling with HDL
Inverter
//CMOS inverter Fig. 10-22 (a)
module inverter (Y,A);
input A;
output Y;
supply1 PWR; Instantiate a
supply0 GRD; PMOS and a
pmos (Y,PWR,A); //(Drain,source,gate)
nmos (Y,GRD,A); //(Drain,source,gate)
NMOS
endmodule
10-10 Switch-Level Modeling with HDL
Inverter
//CMOS inverter Fig. 10-22 (a) The output and
module inverter (Y,A);
the input are
input A;
output Y; common to
supply1 PWR; both transistors
supply0 GRD; at their drain
pmos (Y,PWR,A); //(Drain,source,gate) and gate
nmos (Y,GRD,A); //(Drain,source,gate) terminals,
endmodule
respectively.
10-10 Switch-Level Modeling with HDL
NAND Gate
//CMOS 2-input NAND Fig. 10-22(b)
module NAND2 (Y,A,B); Two PMOS
input A,B; transistors
output Y;
connected in
supply1 PWR;
supply0 GRD; parallel with
wire W1; //terminal between two nmos their source
pmos (Y,PWR,A); //source connected to Vdd terminal
pmos (Y,PWR,B); // parallel connection
nmos (Y,W1,A); // serial connection
connected to
nmos (W1,GRD,B); // source connected to ground PWR.
endmodule
10-10 Switch-Level Modeling with HDL
NAND Gate
//CMOS 2-input NAND Fig. 10-22(b)
module NAND2 (Y,A,B); Two NMOS
input A,B; transistors
output Y; connected in
supply1 PWR;
supply0 GRD; serial with a
wire W1; //terminal between two nmos common
pmos (Y,PWR,A); //source connected to Vdd terminal W1.
pmos (Y,PWR,B); // parallel connection
nmos (Y,W1,A); // serial connection
nmos (W1,GRD,B); // source connected to ground
endmodule
10-10 Switch-Level Modeling with HDL